summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* docker: fix targetting images by nameMatt Bray2014-05-211-1/+1
|
* Fixed extension filtering in InventoryDirectoryKevin Bell2014-05-211-4/+3
|
* Check module_path permissions when creating ssh_wrapper for gitJames Cammarata2014-05-212-2/+22
| | | | | | | | | | If the module directory is not writable/executable to the current user (most likely because of a sudo to a non-root user), the ssh_wrapper will be created in the default location for mkstemp() calls. To facilitate the deletion of these new files, a new mechanism for cleaning up files created by the module was also added. Fixes #7375
* During vsphere config check attempt cast before marking values missingJames Cammarata2014-05-211-1/+9
| | | | Fixes #7385
* Fix env splitting in docker moduleKonstantin Shabanov2014-05-211-1/+1
| | | | ENV variable value could contain '=' (for example mysql://host/db?pool=10)
* Add missing basedir to Runner in _do_setup_stepAllard Hoeve2014-05-211-0/+1
|
* Properly merge role conditionals in with pre-existing conditionalsJames Cammarata2014-05-211-20/+21
| | | | Fixes #7387
* Fix to unescape * was discarded by unescape of @napkindrawing2014-05-211-1/+1
| | | | | | | | `decoded_name` was created twice, each from `rset.name` So, the second call to `.replace(r'\100', '@')` overwrites decoded_name, discarding the result of the call to `.replace(r'\052', '*')` I had a problem with wildcard domains that was fixed by this patch.
* Use the existing module_vars during the templating of module_varsJames Cammarata2014-05-212-1/+3
| | | | | | | | | | Since some of the vars contained in there may be used in the templating of other variables. This also reverts e83a494 which originally fixed issue #6979 but broke some other variable related things. Fixes #6979 Fixes #7321 Fixes #7332
* Evaluate changed_when only if task is not skippedJames Cammarata2014-05-211-1/+1
| | | | Fixes #7405
* Only chown on atomic move if the uid/gid don't match the src/tmp fileJames Cammarata2014-05-211-1/+2
| | | | | | | | This is a corner case for remote file systems that don't support chown() and where the source and destination for the atomic_move are on that remote file system. Fixes #7372
* Use utils.combine_vars on vars_files dataJames Cammarata2014-05-211-1/+1
| | | | Fixes #7345
* Pass vars_files on to included playbooks tooJames Cammarata2014-05-212-22/+66
| | | | Fixes #7384
* Correctly initialize combined_cache for hosts if setup is skippedChris Church2014-05-211-1/+1
| | | | Fixes #7364
* Make sure the docker data has a "Names" field before using itJames Cammarata2014-05-211-1/+3
| | | | Fixes #7363
* Do not base synchronize source on the inventory directoryJames Cammarata2014-05-211-4/+4
|
* Fix: Remove check for Ghost stateJohannes 'fish' Ziemke2014-05-211-1/+1
| | | | This fixed the just committed change handling non existent Ghost state.
* Remove check for Ghost stateJohannes 'fish' Ziemke2014-05-211-1/+1
| | | | This doesn't exist anymore and causes ansible to throw a KeyError
* rds module: Fix undeclared reference to "params" when setting password inHerby Gillot2014-05-211-3/+3
| | | | modify mode.
* ec2: Fix bug with running/stopped state and wait=yes.Yap Sok Ann2014-05-211-30/+20
| | | | | | | | If `get_all_instances` returns multiple reservations, the old wait loop only dealt with the first reservation. Thus, the wait loop may end before all instances get to be running/stopped. Also clean up the code a little.
* Make sure the default ec2_group egress rule is not removedJames Cammarata2014-05-211-1/+5
| | | | | | | | | Upon a second run, the default egress rule will be removed when a vpc is specified but no other egress rules were set. This patch corrects that behavior by removing the default egress rule from the list of unmatched outbound rules. Fixes #7309
* Add pyc/pyo to ignore list for inventory directoriesJames Cammarata2014-05-211-10/+5
| | | | Fixes #7308
* Version bump for 1.6.1 releasev1.6.1release1.6.1James Cammarata2014-05-076-4/+21
|
* Add integration tests for group_by module. Fixed bug introduced by ↵Chris Church2014-05-074-2/+133
| | | | ansible/ansible#7273 while also fixing issue described in ansible/ansible#6953
* Close fds when running commands from the accelerate daemonJames Cammarata2014-05-071-1/+1
| | | | Fixes #7307
* Make sure distro variable is set if python-apt is installedJames Cammarata2014-05-071-11/+19
| | | | Fixes #7295
* made enabled/disabled checks of apache2_module workableChristian Berendt2014-05-071-23/+14
|
* Updating changlog and releases for 1.6release1.6.0James Cammarata2014-05-052-12/+3
|
* Update packaging dates for the 1.6.0 releasev1.6.0James Cammarata2014-05-052-4/+4
|
* Make sure amazon test doesn't check host keysJames Cammarata2014-05-051-1/+1
|
* Merge pull request #7282 from ephur/gitignore_egginfoJames Cammarata2014-05-051-0/+1
|\ | | | | ignore remnants from doing a setup.py install
| * ignore remnants from doing a setup.py installRichard Maynard2014-05-051-0/+1
| |
* | Fixing two bugs in the ec2_elb_lb moduleJames Cammarata2014-05-052-17/+34
| | | | | | | | | | | | * the current state of the ELB was not reflected properly when checking the status after a change was made. * invalid zones caused a traceback when enabling/disabling zones
* | Removing zone choices that overly-limit available zones for gceJames Cammarata2014-05-052-5/+1
| | | | | | | | Fixes #7270
* | Merge pull request #7280 from angstwad/docker_inv_fixJames Cammarata2014-05-051-1/+1
|\ \ | |/ |/| Docker inventory bugfix for potential traceback
| * Docker client occasionally returns a NoneType, so we have to catch the TypeErrorPaul Durivage2014-05-051-1/+1
|/
* Merge branch 'devel' of https://github.com/denisphillips/ansible into ↵James Cammarata2014-05-051-1/+1
|\ | | | | | | denisphillips-devel
| * Used module_args passed to function instead of from runnerDenis Phillips2014-05-041-1/+1
| |
* | Fix error handling on missing dest with unarchiveVeeti Paananen2014-05-041-3/+4
|/ | | | fixes #7107
* Merge pull request #7267 from berendt/retfMichael DeHaan2014-05-0312-15/+15
|\ | | | | fixed typos found by RETF rules in RST files
| * fixed typos found by RETF rules in RST filesChristian Berendt2014-05-0312-15/+15
|/ | | | rules are avaialble at https://en.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser/Typos
* Refuse to convert a non-empty directory into a link with the file moduleJames Cammarata2014-05-022-3/+51
| | | | | | Also adds an integration test for the above. Fixes #7254
* Remove OrderedDict references from runnerJames Cammarata2014-05-021-5/+5
| | | | Fixes #7256
* Merge pull request #7243 from jimi-c/issue_7060_lang_cJames Cammarata2014-05-013-15/+14
|\ | | | | Modify the way we set the localization environment
| * Modify the way we set the localization environmentJames Cammarata2014-05-013-15/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we set the LANG (and LC_CTYPE) environment variables directly in the module code and applied them with os.environ(). Instead, we are now pre-pending those variables to the environment string used to execute the command which allows the user to override the localization values by setting the environment values directly (even on a per-task basis): - subversion: repo=file:///path/to/repos/svn_über dest=/tmp/svntest environment: LANG: "C" LC_CTYPE: "en_US.UTF-8" So if a user wishes to default their LANG back to C, they can still avoid unicode issues by doing the above. Fixes #7060
* | Merge branch 'fix-copy-recursive-issue' of https://github.com/tksmd/ansible ↵James Cammarata2014-05-013-2/+24
|\ \ | | | | | | | | | into tksmd-fix-copy-recursive-issue
| * | fix #7244 recursive copy fails when setting directory attributessomeda2014-05-023-2/+24
| | | | | | | | | | | | - reverse the order of new_directory_list returned from split_pre_existing_dir in copy module
* | | Fixing a documentation error in the new stackdriver moduleJames Cammarata2014-05-011-1/+1
| | |
* | | Minor fix to imports in new stackdriver moduleJames Cammarata2014-05-011-3/+2
|/ /
* | Merge branch 'stackdriver' of https://github.com/bwhaley/ansible into ↵James Cammarata2014-05-011-0/+197
|\ \ | |/ |/| | | bwhaley-stackdriver