- 02 Aug, 2013 14 commits
-
-
module mysql_user: fix 'state' parameter description
Michael DeHaan committed -
Added optional region parameter. Fail if you specify an ELB that doesn'...
Michael DeHaan committed -
now uses get_bin_path for lvg executables
Michael DeHaan committed -
Allow --diff on UTF-8 encoded files and templates
Michael DeHaan committed -
Fix sudo_user copy error
Michael DeHaan committed -
Add extra module path early during playbook parsing.
Michael DeHaan committed -
Fix playbook-local host_vars when running from .
Michael DeHaan committed -
Fix pkgin search
Michael DeHaan committed -
Fix nested loop for more than 3 elements
Michael DeHaan committed -
Fix 'timeout' parameter of glance-image module.
Michael DeHaan committed -
stringify conditional before handing it to Jinja2 for evaluation.
Michael DeHaan committed -
fix: if a path is symlink and trying to chmod, OSError Exception will be raised
Michael DeHaan committed -
updated debug module docs to remove outdated -v requirement
Michael DeHaan committed -
Only revoke GRANT OPTION when user actually has it
Michael DeHaan committed
-
- 01 Aug, 2013 4 commits
-
-
Boto blindly assumes the us-east-1 region if you don't hardcode a region in it's config, so you could end up attempting to modify ELB's in one region from a totally different region. If a region isn't specified then default to the region that the module is being run within rather than the default us-east-1 region since it's a pretty safe assumption that you intend to work on the ELB's within your current region. Also throw an error if a specified ELB instance doesn't exist. The old behavior would be to silently succeed with changed=false, so if you had so much as a typo in the name of your ELB (or were in the wrong region like my initial testing) you wouldn't get a clear indication that a problem had occurred.
Bruce Pennypacker committed -
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed -
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed -
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed
-
- 31 Jul, 2013 1 commit
-
-
Andrey Shorin committed
-
- 30 Jul, 2013 1 commit
-
-
Treat errno 13 (permission denied) as one of the special cases in atomic_move. This type of error can occur because of sudo'ing to non-root user. Fixes #3705
Lorin Hochstein committed
-
- 29 Jul, 2013 3 commits
-
-
Stoned Elipot committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 28 Jul, 2013 4 commits
-
-
This should fix issue #3668 Also prevent an extra module path to be added multiple times.
Stoned Elipot committed -
doc update for stat module
Michael DeHaan committed -
Michael DeHaan committed
-
fixed vpc provisioning / clarified group_id usage
Michael DeHaan committed
-
- 26 Jul, 2013 1 commit
-
-
only_if reference) Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed
-
- 25 Jul, 2013 2 commits
-
-
The timeout parameter of glance-image was not being parsed into a numeric type, causing the following error when specifying timeout: msg: Error in creating image: unsupported operand type(s) for +: 'float' and 'str'Tim Miller committed -
Bruce Pennypacker committed
-
- 24 Jul, 2013 3 commits
-
-
Since ansible 1.2, it became possible to place a host_vars directory in the same directory as a playbook, making it possible to keep host_vars local to that playbook there. However, due to python's os.path.dirname, a action such as: $ ansible-playbook pb.yml ..would not pick up the host_vars as os.path.dirname("pb.yml") returns "", unlike the unix command dirname that would return ".". Substituting "pb.yml" on the command line with "./pb.yml" would do the trick, but is not always intuitive. This patch solves the problem until python solves issue18547 [1]. [1] http://bugs.python.org/issue18547Jonas Eriksson committed -
Andreas Kaiser committed
-
- combine flatten list for each nested level instead once at the end
Vincent Hardion committed
-
- 23 Jul, 2013 3 commits
-
-
This should fix simple conditionals like: when: ansible_selinux While here add tests for ansible.utils.check_conditional() in "jinja2_compare mode".Stoned Elipot committed -
WAKAYAMA Shirou committed
-
When revoking privileges from a user, the GRANT OPTION is always revoked, even if the user doesn't have it. If the user exists, this doesn't give an error, but if the user doesn't exist, it does: mysql> GRANT ALL ON test.* TO 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE ALL ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; ERROR 1141 (42000): There is no such grant defined for user 'test' on host 'localhost' Additionally, in MySQL 5.6 this breaks replication because of http://bugs.mysql.com/bug.php?id=68892. Rather than revoking the GRANT OPTION and catching the error, check if the user actually has it and only revoke it when he does.
Stijn Tintel committed
-
- 22 Jul, 2013 4 commits
-
-
Minor cleanup of YAML Syntax documentation
Michael DeHaan committed -
Joshua Lund committed
-
Ralph Tice committed
-
Michael DeHaan committed
-