mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 04:09:26 +08:00
vault backup: 2024-10-25 16:07:45
Affected files: docs/Command Snippets/Ansible Snippets.md
This commit is contained in:
parent
7284b10711
commit
a435898101
1 changed files with 8 additions and 0 deletions
|
@ -12,4 +12,12 @@ ansible all -m gather_facts
|
|||
|
||||
# Limit to one device
|
||||
ansible all -m gather_facts --limit ADDRESS
|
||||
```
|
||||
Elevate command to root user
|
||||
```bash
|
||||
# This will fail without sudo
|
||||
ansible all -m apt -a update_cache=true
|
||||
|
||||
# This will succeed
|
||||
ansible all -m apt -a update_cache=true
|
||||
```
|
Loading…
Reference in a new issue