ansible-playbook: add start-at and tags commands (#4171)
This commit is contained in:
parent
33ee5d40d1
commit
887b7e7190
|
|
@ -18,3 +18,11 @@
|
|||
- Run tasks in playbook with extra variables defined in a json file:
|
||||
|
||||
`ansible-playbook {{playbook}} -e "@{{variables.json}}"`
|
||||
|
||||
- Run tasks in playbook for the given tags:
|
||||
|
||||
`ansible-playbook {{playbook}} --tags {tags}}`
|
||||
|
||||
- Run tasks in a playbook starting at a specific task:
|
||||
|
||||
`ansible-playbook {{playbook}} --start-at {{task_name}}`
|
||||
|
|
|
|||
Loading…
Reference in New Issue