Skip to content

Commit

Permalink
Merge pull request ansible#5436 from jkleckner/fix-fail-doc-example
Browse files Browse the repository at this point in the history
Fix documentation example for the fail module
  • Loading branch information
mpdehaan committed Dec 27, 2013
2 parents af98ce8 + edca1d6 commit d84b236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/utilities/fail
Original file line number Diff line number Diff line change
Expand Up @@ -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"
'''

0 comments on commit d84b236

Please sign in to comment.