ansible/test/integration/targets/callback_default/callback_default.out.check_nomarkers_wet.stdout
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

74 lines
2.5 KiB
Text

PLAY [A common play] ***********************************************************
TASK [debug] *******************************************************************
ok: [testhost] => {
"msg": "ansible_check_mode: False"
}
TASK [Command] *****************************************************************
changed: [testhost]
TASK [Command with check_mode: false] ******************************************
changed: [testhost]
TASK [Command with check_mode: true] *******************************************
skipping: [testhost]
PLAY [Play with check_mode: true (runs always in check_mode)] ******************
TASK [debug] *******************************************************************
ok: [testhost] => {
"msg": "ansible_check_mode: False"
}
TASK [Command] *****************************************************************
skipping: [testhost]
TASK [Command with check_mode: false] ******************************************
changed: [testhost]
TASK [Command with check_mode: true] *******************************************
skipping: [testhost]
PLAY [Play with check_mode: false (runs always in wet mode)] *******************
TASK [debug] *******************************************************************
ok: [testhost] => {
"msg": "ansible_check_mode: False"
}
TASK [Command] *****************************************************************
changed: [testhost]
TASK [Command with check_mode: false] ******************************************
changed: [testhost]
TASK [Command with check_mode: true] *******************************************
skipping: [testhost]
PLAY [Play with a block with check_mode: true] *********************************
TASK [Command] *****************************************************************
skipping: [testhost]
TASK [Command with check_mode: false] ******************************************
changed: [testhost]
TASK [Command with check_mode: true] *******************************************
skipping: [testhost]
PLAY [Play with a block with check_mode: false] ********************************
TASK [Command] *****************************************************************
changed: [testhost]
TASK [Command with check_mode: false] ******************************************
changed: [testhost]
TASK [Command with check_mode: true] *******************************************
skipping: [testhost]
PLAY RECAP *********************************************************************
testhost : ok=11 changed=8 unreachable=0 failed=0 skipped=7 rescued=0 ignored=0