- 02 Aug, 2013 11 commits
-
-
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
-
- 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 2 commits
-
-
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 12 commits
-
-
Minor cleanup of YAML Syntax documentation
Michael DeHaan committed -
Joshua Lund committed
-
Ralph Tice committed
-
Michael DeHaan committed
-
Fix prev feature commit, Do not require aptitude to use apt commands in the apt module, only needed when upgrading.
Michael DeHaan committed -
Michael DeHaan committed
-
also rename plugin name in error message
Michael DeHaan committed -
use global to fail as its not in self
Michael DeHaan committed -
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
Brian Coca committed -
Serge van Ginderachter committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-