ansible-playbook: add start-at and tags commands (#4171)

This commit is contained in:
gx1
2020-07-17 18:58:11 +02:00
committed by GitHub
parent 33ee5d40d1
commit 887b7e7190

View File

@@ -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}}`