2017-11-03 11:32:05 +01:00
|
|
|
# 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
|
|
|
|
```
|
2017-11-15 10:59:46 +01:00
|
|
|
|
|
|
|
## Limit hosts
|
|
|
|
|
|
|
|
```shell
|
|
|
|
ansible-playbook -i host.targets -v site.yml --limit hostname
|
|
|
|
```
|