16 lines
300 B
Markdown
16 lines
300 B
Markdown
# Ansible
|
|
|
|
## Adhoc commands
|
|
|
|
**Generic**
|
|
|
|
```
|
|
ansible <hosts/groups pattern> -l <limit pattern> -m <module> -a "<module args>" -u <login user> --become --ask-become-pass
|
|
```
|
|
|
|
**Example**
|
|
|
|
```
|
|
ansible all -l localhost -m systemd -a "name=nginx state=restarted" -u test --become --ask-become-pass
|
|
```
|