summaryrefslogtreecommitdiffstats
path: root/manifests/partofme.pp
blob: 1d1b521d111175d7ceed0533d533c5b4fe60d2db (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
node 'partofme', 'partofme.localdomain' {
  # we don't want to store anything system-related on the persistent disk,
  # since we want it to be encrypted, and we can't really access it at boot
  # time to type in a password
  $persistent_data = undef

  class { 'base':
    extra_script => "
      (sudo podman pull docker.io/pihole/pihole)
    ";
  }

  include partofme::operatingsystem
  Class['partofme::operatingsystem'] -> Package<| provider == "pacman" |>

  include partofme::backups
  include partofme::filesharing
  include partofme::mdadm
  include partofme::monitoring
  include partofme::persistent
  include partofme::pihole
  include partofme::twitch
}