Browse Source

new example

master
Nicolas Massé 7 years ago
parent
commit
20beb87cb4
  1. 30
      when-quotes.yaml

30
when-quotes.yaml

@ -0,0 +1,30 @@
- name: Effect of quotes in when conditions
gather_facts: no
hosts: localhost
vars:
a: true
b: false
c: false
tasks:
- name: I'm skipped and that's ok
debug:
msg: I'm skipped and that's ok
when: (a and b) or c
- name: I'm skipped and that's ok
debug:
msg: I'm skipped and that's ok
when: '(a and b) or c'
- name: I'm skipped and that's ok
debug:
msg: I'm skipped and that's ok
when: >-
(a and b) or c
- name: I should not be there!
fail:
msg: I should not be there!
when: ('a and b') or 'c'
Loading…
Cancel
Save