- 05 Aug, 2014 4 commits
-
-
James Cammarata committed
-
https://github.com/jsmartin/ansible
Merge branch 'fix_eip_regression' of https://github.com/jsmartin/ansible into jsmartin-fix_eip_regression
James Cammarata committed -
Removed max 8192 bytes, fixes #8424
Michael DeHaan committed -
Jonathan Mainguy committed
-
- 04 Aug, 2014 20 commits
-
-
Updated docs for health_check_type parameter.
Michael DeHaan committed -
The run_command module function will now poll stdout/stderr for data rather than using the builtin command communicate(), which can hang under certain circumstances. Fixes #7452 Fixes #7748 Fixes #8163
James Cammarata committed -
James Martin committed
-
Fixes a regression in 1453f7b0 that would causes unecessary wait_timeouts in certain module operations when a given IP address could not be found. Now wait_timeouts are only active during address associations of newly provisioned EIPs. Cleanup and comment of main(). s Added wait timeout.
James Martin committed -
Fixes #8330
James Cammarata committed -
Envirionment variable support in GCE inventory plugin.
Michael DeHaan committed -
Fix a typo in gem module documentation
Michael DeHaan committed -
Fixes issue #8339 where Scientific Linux incorrectly tries to use Fedora...
Michael DeHaan committed -
Fixes #8169
James Cammarata committed -
Include unicode and var_precedence tests in 'all' target
James Laska committed -
The ansible PyPi package, and RPM both require crypto>=2.6. This change carries that dependency into the ansible DEB package. Note, for ubuntu-12.04, this dependency is only satisfied by a PPA. Users installing from 'ppa:ansible/ansible' will not be affected..
James Laska committed -
Revert "Use atomic move function on known host file in paramiko to prevent rare occurance of Control-C" This reverts commit 642b183f.
Michael DeHaan committed -
Fixes #8394
James Cammarata committed -
This reverts commit cbdc9f11. Code needs to make allowances for particular python versions and try/except around this block.
Michael DeHaan committed -
Fixes #8425
James Cammarata committed -
during file operations.
Michael DeHaan committed -
Michael DeHaan committed
-
James Laska committed
-
Michael DeHaan committed
-
- 03 Aug, 2014 1 commit
-
-
ebargtuo committed
-
- 02 Aug, 2014 5 commits
-
-
Jonathan Mainguy committed
-
Update version.
Michael DeHaan committed -
"allow_no_value=True" for ini_file module
Michael DeHaan committed -
Adding test Coverage for mysql_variable module
Michael DeHaan committed -
Add support for environment variables in GCE module.
Michael DeHaan committed
-
- 01 Aug, 2014 8 commits
-
-
Bill Nottingham committed
-
Luke Sneeringer committed
-
Michael DeHaan committed
-
Nico Cesar committed
-
Luke Sneeringer committed
-
Use mysql_variable to query, set and update variables. Assert using user and password to query, set and update variables. Assert using single quotes, double quotes and no quotes when using variables
Wayne Rosario committed -
Michael DeHaan committed
-
filter_leading_non_json_lines effectively does re.match(".*\w+=\w+.*", line) for every line of output. This has abysmal performance in case of large Base64-encoded data (which ultimately does not match the regex but does match the .*\w+= part) as returned e.g. by the template module (diffs). Replacing the match with re.search("\w=\w", line) drops the complexity back to linear, and actually usable with large diffs from the template module (a 150 KB Base64 diff kept Ansible spinning at 100% cpu for minutes). Also, check the easy cases (line.startswith) first while we're here. Closes: #8932
Grzegorz Nosek committed
-
- 31 Jul, 2014 2 commits
-
-
ec2 module: document valid states
Michael DeHaan committed -
Lorin Hochstein committed
-