af44bd4ddd
Using --start-at-task on a playbook with tasks with no name would fail if those unnamed tasks were encountered before the targetted start task.
5 lines
91 B
Bash
Executable file
5 lines
91 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux
|
|
|
|
ansible-playbook playbook.yml --start-at-task 'task 2' "$@"
|