abfb7919dc
Change: - In some cases (always with free strategy, sometimes with linear), the default callback would not show the task banner for include_tasks. - This only affects the include_tasks task itself, not the tasks in the included file. Test Plan: - Updated default callback tests Tickets: - Fixes #71277 Signed-off-by: Rick Elrod <rick@elrod.me>
76 lines
2.7 KiB
Text
76 lines
2.7 KiB
Text
|
|
PLAY [testhost] ****************************************************************
|
|
|
|
TASK [Changed task] ************************************************************
|
|
changed: [testhost]
|
|
|
|
TASK [Ok task] *****************************************************************
|
|
ok: [testhost]
|
|
|
|
TASK [Failed task] *************************************************************
|
|
fatal: [testhost]: FAILED! => {"changed": false, "msg": "no reason"}
|
|
...ignoring
|
|
|
|
TASK [Task with var in name (foo bar)] *****************************************
|
|
changed: [testhost]
|
|
|
|
TASK [Loop task] ***************************************************************
|
|
changed: [testhost] => (item=foo-1)
|
|
changed: [testhost] => (item=foo-2)
|
|
changed: [testhost] => (item=foo-3)
|
|
|
|
TASK [debug loop] **************************************************************
|
|
changed: [testhost] => (item=debug-1) => {
|
|
"msg": "debug-1"
|
|
}
|
|
failed: [testhost] (item=debug-2) => {
|
|
"msg": "debug-2"
|
|
}
|
|
ok: [testhost] => (item=debug-3) => {
|
|
"msg": "debug-3"
|
|
}
|
|
fatal: [testhost]: FAILED! => {"msg": "One or more items failed"}
|
|
...ignoring
|
|
|
|
TASK [EXPECTED FAILURE Failed task to be rescued] ******************************
|
|
fatal: [testhost]: FAILED! => {"changed": false, "msg": "Failed as requested from task"}
|
|
|
|
TASK [Rescue task] *************************************************************
|
|
changed: [testhost]
|
|
|
|
TASK [include_tasks] ***********************************************************
|
|
included: .../test/integration/targets/callback_default/include_me.yml for testhost => (item=1)
|
|
|
|
TASK [debug] *******************************************************************
|
|
ok: [testhost] => {
|
|
"item": 1
|
|
}
|
|
|
|
RUNNING HANDLER [Test handler 1] ***********************************************
|
|
changed: [testhost]
|
|
|
|
RUNNING HANDLER [Test handler 2] ***********************************************
|
|
ok: [testhost]
|
|
|
|
RUNNING HANDLER [Test handler 3] ***********************************************
|
|
changed: [testhost]
|
|
|
|
PLAY [testhost] ****************************************************************
|
|
|
|
TASK [First free task] *********************************************************
|
|
changed: [testhost]
|
|
|
|
TASK [Second free task] ********************************************************
|
|
changed: [testhost]
|
|
|
|
TASK [Include some tasks] ******************************************************
|
|
included: .../test/integration/targets/callback_default/include_me.yml for testhost => (item=1)
|
|
|
|
TASK [debug] *******************************************************************
|
|
ok: [testhost] => {
|
|
"item": 1
|
|
}
|
|
|
|
PLAY RECAP *********************************************************************
|
|
testhost : ok=16 changed=9 unreachable=0 failed=0 skipped=1 rescued=1 ignored=2
|
|
|