summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/until.yml
blob: 2146a9de04b05ee7bf66ab529541d00d2d5d3d21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- ansible.builtin.debug:
    msg: "valid"
  until: true

- ansible.builtin.debug:
    msg: "valid"
  until:
    - "foo not in bar"

- ansible.builtin.debug:
    msg: "valid"
  until:
    - "'1' in ['1', '2', '3']"
    - "foo is not defined"