summaryrefslogtreecommitdiffstats
path: root/test/jinja2-when-failure.yml
blob: aec72697e05295f9dd665ab2076365bf95fe581d (plain)
1
2
3
4
5
6
7
8
9
10
- hosts: all
  tasks:
    - name: test when with jinja2
      debug: msg=text
      when: "{{ false }}"

- hosts: all
  roles:
    - role: test
      when: "{{ '1' = '1' }}"