mirror of https://github.com/ansible/ansible.git
Don't treat host_pinned as lockstep (#73484)
* Don't treat host_pinned as lockstep. Fixes #73364 * Add intg testspull/73511/head
parent
8d6136eab9
commit
d3f3784b86
@ -0,0 +1,3 @@
|
||||
bugfixes:
|
||||
- default callback - Ensure that the ``host_pinned`` strategy is not treated as lockstep
|
||||
(https://github.com/ansible/ansible/issues/73364)
|
@ -0,0 +1,29 @@
|
||||
|
||||
PLAY [nonlockstep] *************************************************************
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
changed: [testhost12]
|
||||
|
||||
PLAY RECAP *********************************************************************
|
||||
testhost10 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost11 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost12 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
|
@ -0,0 +1,29 @@
|
||||
|
||||
PLAY [nonlockstep] *************************************************************
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
changed: [testhost11]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost10]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
changed: [testhost12]
|
||||
|
||||
TASK [command] *****************************************************************
|
||||
changed: [testhost11]
|
||||
changed: [testhost12]
|
||||
|
||||
PLAY RECAP *********************************************************************
|
||||
testhost10 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost11 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
testhost12 : ok=3 changed=3 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
|
||||
|
@ -0,0 +1,7 @@
|
||||
---
|
||||
- hosts: nonlockstep
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- command: sleep {{ 2 * i }}
|
||||
- command: sleep {{ 2 * i }}
|
||||
- command: sleep {{ 2 * i }}
|
Loading…
Reference in New Issue