You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/library
Jim Kleckner edca1d69cf Fix documentation example for the fail module
The example for the fail module doesn't work:
  http://www.ansibleworks.com/docs/modules.html#fail

The current text shows:
    - fail: msg="The system may not be provisioned according to the CMDB status."
      when: "{{ cmdb_status }} != 'to-be-staged'"

The "when" documentation indicates that the argument is already a Jinja2
expression:
  http://www.ansibleworks.com/docs/playbooks_conditionals.html#the-when-statement

Thus, the following is
      when: cmdb_status != "to-be-staged"

is preferred even though the following could work but generates a
deprecation warning:
      when: {{cmdb_status != "to-be-staged"}}
12 years ago
..
cloud fix short/full description for elasticache 12 years ago
commands shell module: document removes option and sync with command module doc 12 years ago
database Merge pull request #5099 from tartansandal/postgresql_db_check_mode 12 years ago
files Merge pull request #5427 from bcoca/template_docs2 12 years ago
internal Addresses #5023 Fix import comments 12 years ago
inventory Make add_host clear the inventory pattern cache, add some more aliases. Fixes #4442. 12 years ago
messaging Addresses #5023 Fix import comments 12 years ago
monitoring module(nagios): don't catch `SystemExit` 12 years ago
net_infrastructure Addresses #5023 Fix import comments 12 years ago
network Addresses #5023 Fix import comments 12 years ago
notification module is not exposed to send_msg, but main() catches exceptions and uses module.fail_json 12 years ago
packaging Use task names in examples. 12 years ago
source_control Fixes #5023 Convert all modules to use new snippet import pattern 12 years ago
system Fix a documentation item. 12 years ago
utilities Fix documentation example for the fail module 12 years ago
web_infrastructure Addresses #5023 Fix import comments 12 years ago