Merge pull request #9268 from kustodian/docs_advance_conditions
Added an example for paretheses
This commit is contained in:
commit
bad554d517
1 changed files with 8 additions and 0 deletions
|
@ -28,6 +28,14 @@ It's actually pretty simple::
|
||||||
command: /sbin/shutdown -t now
|
command: /sbin/shutdown -t now
|
||||||
when: ansible_os_family == "Debian"
|
when: ansible_os_family == "Debian"
|
||||||
|
|
||||||
|
You can also use parentheses to group conditions::
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: "shutdown CentOS 6 and 7 systems"
|
||||||
|
command: /sbin/shutdown -t now
|
||||||
|
when: ansible_distribution == "CentOS" and
|
||||||
|
(ansible_distribution_major_version == "6" or ansible_distribution_major_version == "7")
|
||||||
|
|
||||||
A number of Jinja2 "filters" can also be used in when statements, some of which are unique
|
A number of Jinja2 "filters" can also be used in when statements, some of which are unique
|
||||||
and provided by Ansible. Suppose we want to ignore the error of one statement and then
|
and provided by Ansible. Suppose we want to ignore the error of one statement and then
|
||||||
decide to do something conditionally based on success or failure::
|
decide to do something conditionally based on success or failure::
|
||||||
|
|
Loading…
Reference in a new issue