summaryrefslogtreecommitdiffstats
path: root/site.yml
blob: 8c533a07749c1c06c77ffc4c5c6e91206e4753c4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
- name: "Dev machines configure"
  gather_facts: true
  hosts:
    - archlinux.local
    - ubuntu.local
  roles:
    - role: "package_cache"
      tags: ["required_for_boot"]
    - role: "hostname"
      tags: ["required_for_boot"]
    - role: "network"
      tags: ["required_for_boot"]
    - role: "user"
      tags: ["required_for_boot"]
    - role: "ssh"
      tags: ["required_for_boot"]
    - role: "password_policy"
      tags: ["required_for_boot"]
    - role: "locales"
    - role: "timezone"
    - role: "wireguard"
    - role: "homebrew"
    - role: "python"
    - role: "go"
    - role: "docker"
    - role: "podman"
    - role: "ansible"

- name: "Raspberry Pi configure"
  gather_facts: true
  hosts:
    - rpi5.local
  become: true
  roles:
    - role: "package_cache"
      tags: ["required_for_boot"]
    - role: "hostname"
      tags: ["required_for_boot"]
    - role: "network"
      tags: ["required_for_boot"]
    - role: "user"
      tags: ["required_for_boot"]
    - role: "ssh"
      tags: ["required_for_boot"]
    - role: "password_policy"
      tags: ["required_for_boot"]
    - role: "locales"
    - role: "timezone"
    - role: "wireguard"
    - role: "wg_portal"
    - role: "pihole"