ansible/test/integration/targets/callback_default/test_dryrun.yml
basos g 3c8838f0f7 Add check mode indicators at the beginning and the end of the playbook, play, and task (#49432)
* Add integration tests for default callback check mode markers
2019-07-25 12:05:43 -04:00

93 lines
1.8 KiB
YAML

---
- name: A common play
hosts: testhost
gather_facts: no
tasks:
- debug:
msg: 'ansible_check_mode: {{ansible_check_mode}}'
- name: Command
command: ls -l
- name: "Command with check_mode: false"
command: ls -l
check_mode: false
- name: "Command with check_mode: true"
command: ls -l
check_mode: true
- name: "Play with check_mode: true (runs always in check_mode)"
hosts: testhost
gather_facts: no
check_mode: true
tasks:
- debug:
msg: 'ansible_check_mode: {{ansible_check_mode}}'
- name: Command
command: ls -l
- name: "Command with check_mode: false"
command: ls -l
check_mode: false
- name: "Command with check_mode: true"
command: ls -l
check_mode: true
- name: "Play with check_mode: false (runs always in wet mode)"
hosts: testhost
gather_facts: no
check_mode: false
tasks:
- debug:
msg: 'ansible_check_mode: {{ansible_check_mode}}'
- name: Command
command: ls -l
- name: "Command with check_mode: false"
command: ls -l
check_mode: false
- name: "Command with check_mode: true"
command: ls -l
check_mode: true
- name: "Play with a block with check_mode: true"
hosts: testhost
gather_facts: no
tasks:
- block:
- name: Command
command: ls -l
- name: "Command with check_mode: false"
command: ls -l
check_mode: false
- name: "Command with check_mode: true"
command: ls -l
check_mode: true
check_mode: true
- name: "Play with a block with check_mode: false"
hosts: testhost
gather_facts: no
tasks:
- block:
- name: Command
command: ls -l
- name: "Command with check_mode: false"
command: ls -l
check_mode: false
- name: "Command with check_mode: true"
command: ls -l
check_mode: true
check_mode: false