1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request 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"
'''