mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 12:19:25 +08:00
477 B
477 B
WSL Fix for world-writable directories
export ANSIBLE_CONFIG=./ansible.cfg
Ping
ansible all -m ping
Gather facts
ansible all -m gather_facts
# Limit to one device
ansible all -m gather_facts --limit ADDRESS
Elevate command to root user
# This will fail without sudo
ansible all -m apt -a update_cache=true
# This will succeed
# Equivalent to sudo apt-update
ansible all -m apt -a update_cache=true --become --ask-become-me-pass