Commit Graph

6334 Commits (d9152eb583b0030e93513a67b81ede85d5da5f18)
 

Author SHA1 Message Date
Stoned Elipot a1503c4d59 stringify conditional before handing it to Jinja2 for evaluation.
This should fix simple conditionals like:

    when: ansible_selinux

While here add tests for ansible.utils.check_conditional() in
"jinja2_compare mode".
11 years ago
Ivan Lezhnjov IV d4f75bc12c Proper support for RHEL/CentOS 5 (the only thing it needs now is to call python26) 11 years ago
Curtis c1c1b128f8 changed apikey and apiid to api_key and api_id and noted that it is boundary tags not ansible tags as per mpdehaan 11 years ago
WAKAYAMA Shirou 0ce99e391f fix: if a path is symlink and trying to chmod, OSError Exception will be raised. 11 years ago
Eivind Uggedal 35b918359b Pacman module: recursive remove support 11 years ago
Stijn Tintel 9d0fc0fd67 Only revoke GRANT OPTION when user actually has it
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.
11 years ago
Peter Hall d1369f3d95 Adding getstr mode to download an object into a variable 11 years ago
Michael DeHaan d1effecb2e Merge pull request #3628 from jlund/yaml-syntax
Minor cleanup of YAML Syntax documentation
11 years ago
Joshua Lund be6feee058 Minor cleanup of YAML Syntax documentation 11 years ago
Ralph Tice 1529a974e1 fixed vpc provisioning / clarified group_id usage 11 years ago
Michael DeHaan 86f05f11e7 Merge branch 'devel' of github.com:ansible/ansible into devel 11 years ago
Michael DeHaan a35370a766 Fix prev feature commit, Do not require aptitude to use apt commands in the apt module, only needed when upgrading. 11 years ago
Michael DeHaan fc9aa5f014 Continue on mount errors, don't fail the setup module. 11 years ago
Michael DeHaan f0eafff1b4 Merge pull request #3621 from sergevanginderachter/rename2flattened
also rename plugin name in error message
11 years ago
Ralph Tice 2383a8205c changed role path template to read all vars instead of just extra_vars 11 years ago
Michael DeHaan 9c9bc09ce6 Merge pull request #3622 from bcoca/fix_the_stat_fix
use global to fail as its not in self
11 years ago
Brian Coca 3f85a82ae9 use global to fail as its not in self
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
11 years ago
Serge van Ginderachter b40295910d also rename plugin name in error message 11 years ago
Michael DeHaan 2fe25f19dc Fix to group_by module as a result of previous conditional upgrades. 11 years ago
Michael DeHaan e3f213e030 Fixup error reporting. 11 years ago
Michael DeHaan c07dd07767 Add raw copy support (raw=yes), tweak tempfile error message string. 11 years ago
Michael DeHaan 2e38d92262 Merge pull request #3619 from ches/doc-fixes
Enhance meta-docs on... contributing to docs.
11 years ago
Michael DeHaan 5e02759570 Merge pull request #3617 from dermute/devel
svr4pkg doesn't work on Sol10
11 years ago
Ches Martin b35fc42d36 Enhance meta-docs on... contributing to docs.
- Update FAQ entry to refer to docsite README and reduce redundancy.

- Add additional info to docsite README: Sphinx building, link to module
  documentation reference.
11 years ago
Michael DeHaan a7a82c79c0 Merge pull request #3611 from tgerla/docsfix
very minor fix to playbooks2 to fix a formatting error
11 years ago
Tim Gerla 7e07bca6bf very minor fix to playbooks2 to fix a formatting error 11 years ago
Michael DeHaan 524c7bd791 Remove end of line semicolons. 11 years ago
Michael DeHaan 19d78d6e18 Remove reference to 'context' since it's not implemented. 11 years ago
Michael DeHaan 0cf5e5cec3 Merge branch 'devel' of git://github.com/bradleyy/ansible into together 11 years ago
Michael DeHaan c5cbb1dc62 Fix route53 module docs version/module name 11 years ago
Michael DeHaan 77a4dcca85 Sphinx/docs syntax fixes 11 years ago
Michael DeHaan 10f99938b9 Fix YAML doc errors. 11 years ago
Michael DeHaan af94fb8eea Update changelog 11 years ago
Michael DeHaan 7961a81b3f Update docs to add version_added attribute. 11 years ago
Michael DeHaan 32b3c59bad Merge pull request #3400 from diko4096/patch-1
Update gem
11 years ago
Michael DeHaan fc70fbcab0 update changelog 11 years ago
Michael DeHaan 5fe1f03885 Merge pull request #3413 from evan82/devel
Added module for baking EC2 AMIs
11 years ago
Michael DeHaan e2af927c3f Take notes on features that need to be documented in CHANGELOG 11 years ago
Michael DeHaan feb4a8847d Slight edit to when_changed docs 11 years ago
Michael DeHaan b603bb0f73 Merge branch 'changed_when-doc' of git://github.com/stoned/ansible into devel 11 years ago
Michael DeHaan 8be17cd7f8 Add note about changed_when to changelog. 11 years ago
Michael DeHaan f3c69040b4 Merge branch 'changed_when' into devel 11 years ago
Michael DeHaan 0756aa406a Change conditional operation workflow.
Conflicts:

	lib/ansible/utils/__init__.py
11 years ago
Michael DeHaan 7f462a346a Work in progress on merging changed_when. 11 years ago
Michael DeHaan 3f1f0e7bc2 Change conditional operation workflow. 11 years ago
Michael DeHaan 88720516a1 Merge branch 'changed_when' of git://github.com/stoned/ansible into changed_when 11 years ago
Michael DeHaan 1acd9b6325 Update CHANGELOG 11 years ago
Michael DeHaan e589365279 Merge branch 'iss_cron' of git://github.com/dirtyharrycallahan/ansible into dh_cron 11 years ago
Michael DeHaan ad086cdd1d Update changelog 11 years ago
Michael DeHaan 44f55d72b6 Merge pull request #3574 from bpennypacker/route53
AWS route53 module
11 years ago