mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-22 08:59:08 -07:00
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"}}
This commit is contained in:
parent
af98ce8433
commit
edca1d69cf
1 changed files with 1 additions and 1 deletions
|
@ -40,5 +40,5 @@ author: Dag Wieers
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Example playbook using fail and when together
|
# Example playbook using fail and when together
|
||||||
- fail: msg="The system may not be provisioned according to the CMDB status."
|
- 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"
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue