vault backup: 2024-10-25 15:57:44

Affected files:
docs/Command Snippets/Ansible Snippets.md
This commit is contained in:
Keannu Bernasol 2024-10-25 15:57:44 +08:00
parent b829aac16c
commit 7284b10711

View file

@ -2,8 +2,14 @@ WSL Fix for world-writable directories
```bash
export ANSIBLE_CONFIG=./ansible.cfg
```
Ping
```bash
ansible all -m ping
```
Gather facts
```bash
ansible all
ansible all -m gather_facts
# Limit to one device
ansible all -m gather_facts --limit ADDRESS
```