mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
Merge pull request #2622 from skvidal/playbook-start-at-task
implement --start-at-task option to hop to a specific task before starti...
This commit is contained in:
commit
3e736eaf00
2 changed files with 13 additions and 1 deletions
|
@ -75,6 +75,8 @@ def main(args):
|
|||
help="do list all tasks that would be executed")
|
||||
parser.add_option('--step', dest='step', action='store_true',
|
||||
help="one-step-at-a-time: confirm each task before running")
|
||||
parser.add_option('--start-at-task', dest='start_at',
|
||||
help="start the playbook with a task matching this name")
|
||||
|
||||
options, args = parser.parse_args(args)
|
||||
|
||||
|
@ -116,6 +118,8 @@ def main(args):
|
|||
playbook_cb = callbacks.PlaybookCallbacks(verbose=utils.VERBOSITY)
|
||||
if options.step:
|
||||
playbook_cb.step = options.step
|
||||
if options.start_at:
|
||||
playbook_cb.start_at = options.start_at
|
||||
runner_cb = callbacks.PlaybookRunnerCallbacks(stats, verbose=utils.VERBOSITY)
|
||||
|
||||
pb = ansible.playbook.PlayBook(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue