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.
 
 
 
 
 
Go to file
Jim Kleckner 2903c7b568 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"}}
11 years ago
cloud fix short/full description for elasticache 11 years ago
commands shell module: document removes option and sync with command module doc 11 years ago
database Merge pull request #5099 from tartansandal/postgresql_db_check_mode 11 years ago
files Merge pull request #5427 from bcoca/template_docs2 11 years ago
internal
inventory
messaging
monitoring module(nagios): don't catch `SystemExit` 11 years ago
net_infrastructure
network Addresses #5023 Fix import comments 11 years ago
notification module is not exposed to send_msg, but main() catches exceptions and uses module.fail_json 11 years ago
packaging Use task names in examples. 11 years ago
source_control
system Fix a documentation item. 11 years ago
utilities Fix documentation example for the fail module 11 years ago
web_infrastructure