Commit Graph

2243 Commits (7d3ae9fc75a76d8fdb8696151afc865ac0b954ea)

Author SHA1 Message Date
James Cammarata af1dd7075f Adding chunked file transfers to fireball2 13 years ago
James Cammarata 959138d00d Added accelerate_port to plays, and made it configurable 13 years ago
James Cammarata b45342923c Initial support for sudoable commands over fireball2
Caveats:
* requiretty must be disabled in the sudoers config
* asking for a password doesn't work yet, so any sudoers users must
  be configured with NOPASSWD
* if not starting the daemon as root, the user running the daemon
  must have sudoers entries to allow them to run the command as the
  target sudo_user
13 years ago
James Cammarata 4b552457e7 Bail out correctly if socket.recv gets nothing (indicating a closed socket) 13 years ago
James Cammarata 521e14a3ad Fireball2 mode working! 13 years ago
Jharrod LaFon be57d7cc99 The cloudformation module argument spec should match the documentation, so that template_parameters is a required argument. 13 years ago
Michael DeHaan 8ec806905d Merge pull request #3942 from jocelynj/gem
Correctly handle option user_install in gem module
13 years ago
Michael DeHaan 4ca5db0a57 Merge pull request #3861 from djoreilly/quantum_net_types
quantum_network should not default network provider type to local
13 years ago
James Cammarata a8984a6b2b Minor text corrections in the yum module documentation 13 years ago
James Cammarata 7625f40f99 Merge pull request #3941 from hnakamur/update_yum_doc_for_name_accepts_url_and_path
Add description and examples for the name parameter accepts a url or a l...
13 years ago
James Cammarata ceddc37f07 Fix for the cron module on FreeBSD
Apparently crontab on freebsd does not like the file path coming before
the "-u username" portion of the command to install the crontab
13 years ago
Jocelyn Jaubert f958a5ac81 Correctly handle option user_install in gem module 13 years ago
Hiroaki Nakamura aa9e05baa2 Add description and examples for the name parameter accepts a url or a local path to a rpm file. 13 years ago
James Cammarata 2f6dcfe36f Fixed small typo from the merge conflict in the route53 module 13 years ago
James Cammarata 7d69d1e289 Merge branch 'rb2' of https://github.com/bpennypacker/ansible into bpennypacker-rb2 13 years ago
Bruce Pennypacker 80ddb1aee6 Added wait parameter 13 years ago
James Cammarata bb75050912 Merge branch 'rb2' of https://github.com/bpennypacker/ansible into bpennypacker-rb2
Conflicts:
	library/cloud/route53
13 years ago
James Cammarata 1d98e7bc05 Cleaning up some pep8 issues in the pkgutil module 13 years ago
James Cammarata dfbe1132d2 Merge branch 'allow_wildcard_yum' of https://github.com/mscherer/ansible into mscherer-allow_wildcard_yum 13 years ago
James Cammarata 7bd8c18fa7 Merge branch 'gitfix' of https://github.com/johanwiren/ansible into johanwiren-gitfix 13 years ago
Johan Wirén dcd556b92f Fixed so that we no longer check with the remote if a checkout already is at the desired sha version. 13 years ago
James Cammarata 12f2caeed6 Merge branch 'pacman_local_plus_check' of https://github.com/mivok/ansible into mivok-pacman_support_check_mode 13 years ago
James Cammarata de4ed11fa6 Merge branch 'pacman_support_check_mode' of https://github.com/mivok/ansible into mivok-pacman_support_check_mode 13 years ago
Arthur Taylor 1dd3ff3879 Added Overwrite option for Route53 record creation 13 years ago
James Cammarata abac720255 Merge branch 'command-relpath' of https://github.com/j2sol/ansible into j2sol-command-relpath 13 years ago
Joshua Lund 654b37f212 Fixing typo in EC2 modules 13 years ago
Jesse Keating 36ca709849 Allow for relative paths by using abspath
relative pathing comes in handy on occasion, particularly when
delegating to localhost and running some command out of your playbook
repo. Making use of os.path.abspath will allow for the full path to
chdir and executable to be discovered if not provided.
13 years ago
James Cammarata ae98a025bb Minor doc fixes for the pkgutil module 13 years ago
Alexander Winkler 59c7ef2afa Added module pkgutil 13 years ago
Bruce Pennypacker 2e20387671 yet another rebase attempt 13 years ago
Bruce Pennypacker 0f458210bc Rebase attempt
No idea if I'm rebasing properly or not.  This is my first attempt.
13 years ago
Stephen Fromm cc58403e48 Apply consistent parameter alises to hg and subversion
For issue #3372, apply consistent parameter aliases to source_control
modules.  For hg, add name and version and add to documentation string.
For subversion, add version and document version and name aliases in
documentation string.
13 years ago
James Cammarata 49b0ff18a7 Missed some typos in macros for the xattr doc 13 years ago
James Cammarata 230077fda9 Fixing docs in xattr module 13 years ago
James Cammarata 0747d41e76 Cleaning up some typos in the xattr module 13 years ago
James Cammarata 5e4f9657ca Merge branch 'xattr2' of https://github.com/bcoca/ansible into bcoca-xattr2 13 years ago
Michael DeHaan 1509e995df Merge pull request #3874 from mscherer/relax_nova_compute_argument
image_id is not required to delete a vm from openstack
13 years ago
James Cammarata a39aa57c5c Fixing small typo in redis module documentation 13 years ago
James Cammarata 17aa738872 Merge branch 'redis-config' of https://github.com/slok/ansible into slok-redis-config 13 years ago
James Cammarata 77b98df63b Minor fix, vpc_id is not required for the ec2_group 13 years ago
Andrew de Quincey 58e85855e4 Add module to control EC2 security groups 13 years ago
sjahl 4dd68c07a0 setting 0644 permissions on mkstemp file handles. Fixes issue #3857 13 years ago
Mark Harrison a347bfa2bb Merge branch 'pacman_local' into pacman_local_plus_check
Conflicts:
	library/packaging/pacman
13 years ago
Mark Harrison 0419fb74bb Support check mode with pacman module 13 years ago
Mark Harrison f52a1c8f46 Allow installation of local packages with pacman 13 years ago
Michael Scherer 472654447c Allow to use '*test*' in enablerepo for yum action
Yum commandline permit to use a wildcard to enable and disable
repositories in the --enablerepo switch, permitting to enable
a complete set of repository at once ( like all rpmfusion, all
update-testing, etc ).

However, this doesn't work in yum due to more stringent checks
that verify that a exact match is given for the name of the
repository , see commit 5c26805.

This commit enhance the check by permitting to test more than
1 repository at a time, thus permitting to use wildcards.
13 years ago
Michael Scherer 3f158a4688 image_id is not required to delete a vm from openstack
Since deletion do not check the type of image or anything,
and since that's tedious to keep track of the image_id and
just adding noise to add image_id for nothing, this commit
just relax the requirement.
13 years ago
Michael DeHaan dacd311474 Removing synchronize momentarily as it looks like this won't make 1.3 dates 13 years ago
Brian Coca 52dd1dd4c5 now missing dep gives nicer error and docs disambiguate as several libs
out there have same name.
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
13 years ago
Darragh O'Reilly fb42efc355 quantum_network should not default network provider type to local
It should allow the Quantum service to decide based on its configuration.
13 years ago