Update fail docs for new syntax
Use when instead of only_if Use new variable style
This commit is contained in:
parent
714cb02f5b
commit
1689001036
1 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ module: fail
|
||||||
short_description: Fail with custom message
|
short_description: Fail with custom message
|
||||||
description:
|
description:
|
||||||
- This module fails the progress with a custom message. It can be
|
- This module fails the progress with a custom message. It can be
|
||||||
useful for bailing out when a certain condition is met using C(only_if).
|
useful for bailing out when a certain condition is met using C(when).
|
||||||
version_added: "0.8"
|
version_added: "0.8"
|
||||||
options:
|
options:
|
||||||
msg:
|
msg:
|
||||||
|
@ -38,7 +38,7 @@ author: Dag Wieers
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Example playbook using fail and only_if 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."
|
||||||
only_if: "'$cmdb_status' != 'to-be-staged'"
|
when: "{{ cmdb_status }} != 'to-be-staged'"
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue