configs/README.md

23 lines
561 B
Markdown

# ansible
Currently Ansible configurations for `ataraxia`, although if this goes well I'll bring it to Tycho/future devices. Please don't use :/
## Start
`sudo dnf install -y ansible`
- inventory: hosts file
- tasks: what playbook is going to do
- variables
- group_vars: groups of hosts
- host_vars: individual hosts
- `ansible-vault create/edit secret.yml`
- playbook: list of all tasks/roles Ansible must execute
- execute: `ansible-playbook run.yml -K --ask-vault-pass`
## S
```bash
ansible-galaxy collection install ansible.posix
```