You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/loop_control/until.yml

18 lines
305 B
YAML

- hosts: localhost
gather_facts: false
tasks:
- debug: var=item
changed_when: false
loop:
- 1
- 2
- 3
- 4
loop_control:
until: item >= 2
register: untiltest
- assert:
that:
- untiltest['results']|length == 2