aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 44f72e67e81e521606472379ecea3fa772e0795b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
## preambule

Ansible playbooks and roles for managing infrastructure at `<rgoncalves.se>`.

## usage

Generate a global playbook with all sub-roles.

```bash
./generate_all
```

Execute a role on a desired host or set of hosts.

```bash
ansible-playbook play-all.yml --tags "<desired_role>" --l "<desired host or host-pattern>"
```

## examples

Update system and install utility on my primary physical server `OOP-DV-stack0`.

```bash
ansible-playbook play-all.yml --tags "update,setup_utils" -l "*stack0"
```
remember that computers suck.