Merge pull request #5436 from jkleckner/fix-fail-doc-example

Fix documentation example for the fail module
This commit is contained in:
Michael DeHaan 2013-12-27 11:21:51 -08:00
commit d84b236ad5

View file

@ -40,5 +40,5 @@ author: Dag Wieers
EXAMPLES = '''
# Example playbook using fail and when together
- fail: msg="The system may not be provisioned according to the CMDB status."
when: "{{ cmdb_status }} != 'to-be-staged'"
when: cmdb_status != "to-be-staged"
'''