summaryrefslogtreecommitdiffstats
path: root/manifests/tozt.pp
blob: f644d85686c499ce1c8de3c8790e57b02850866b (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
node 'tozt', 'tozt.localdomain' {
  $persistent_data = '/media/persistent'
  include tozt::persistent
  Class['tozt::persistent'] -> Class['base']

  class { 'base':
    extra_script => "
      (cd /home/doy/coding/metabase-utils && git pull)
    ";
  }

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

  include tozt::backups
  include tozt::git
  include tozt::metabase
  include tozt::monitoring
  include tozt::munin
  include tozt::pass
  include tozt::paste
  include tozt::services
  include tozt::site
  include tozt::ttrss
}