Created
October 25, 2016 15:19
-
-
Save resmo/c650dc1846c14cdccbc41d509c92f4c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| one | |
| two | |
| three | |
| four | |
| five | |
| six |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PLAY [serial with 50%] ********************************************************* | |
| TASK [setup] ******************************************************************* | |
| ok: [one] | |
| ok: [two] | |
| ok: [three] | |
| TASK [command] ***************************************************************** | |
| changed: [two] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [three] => (item=1) | |
| PLAY [serial with 50%] ********************************************************* | |
| TASK [setup] ******************************************************************* | |
| ok: [four] | |
| ok: [five] | |
| ok: [six] | |
| TASK [command] ***************************************************************** | |
| changed: [five] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [six] => (item=1) | |
| PLAY [serial with 3/6] ********************************************************* | |
| TASK [setup] ******************************************************************* | |
| ok: [one] | |
| ok: [two] | |
| ok: [three] | |
| TASK [command] ***************************************************************** | |
| changed: [two] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [three] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [one] => (item=1) | |
| changed: [two] => (item=1) | |
| changed: [three] => (item=1) | |
| PLAY [serial with 3/6] ********************************************************* | |
| TASK [setup] ******************************************************************* | |
| ok: [four] | |
| ok: [five] | |
| ok: [six] | |
| TASK [command] ***************************************************************** | |
| changed: [four] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [five] => (item=1) | |
| changed: [six] => (item=1) | |
| changed: [four] => (item=1) | |
| changed: [five] => (item=1) | |
| PLAY RECAP ********************************************************************* | |
| five : ok=4 changed=2 unreachable=0 failed=0 | |
| four : ok=4 changed=2 unreachable=0 failed=0 | |
| one : ok=4 changed=2 unreachable=0 failed=0 | |
| six : ok=4 changed=2 unreachable=0 failed=0 | |
| three : ok=4 changed=2 unreachable=0 failed=0 | |
| two : ok=4 changed=2 unreachable=0 failed=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - name: serial with 50% | |
| hosts: all | |
| serial: "50%" | |
| connection: local | |
| vars: | |
| mins: | |
| - 1 | |
| - 1 | |
| - 1 | |
| - 1 | |
| tasks: | |
| - shell: sleep {{ item }} | |
| with_items: "{{ mins }}" | |
| - name: serial with 3/6 | |
| hosts: all | |
| serial: 3 | |
| connection: local | |
| vars: | |
| mins: | |
| - 1 | |
| - 1 | |
| - 1 | |
| - 1 | |
| tasks: | |
| - shell: sleep {{ item }} | |
| with_items: "{{ mins }}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment