1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:53:52 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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