20 lines
325 B
Markdown
20 lines
325 B
Markdown
|
# Ansible
|
||
|
|
||
|
## List all tags
|
||
|
|
||
|
```shell
|
||
|
ansible-playbook -i host.targets -v site.yml --list-tags
|
||
|
```
|
||
|
|
||
|
## Start at a specific task (life savior)
|
||
|
|
||
|
```shell
|
||
|
ansible-playbook -i host.targets -v site.yml --start-at-task "The audacious task"
|
||
|
```
|
||
|
|
||
|
## List hosts
|
||
|
|
||
|
```shell
|
||
|
ansible-playbook -i host.targets -v site.yml --list-hosts
|
||
|
```
|