summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/init.pp
blob: f7997dadb9a3d03e911ea6461465159299e6434c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class tozt {
  include tozt::users

  Package::Makepkg {
    build_user => 'doy',
  }

  Tozt::User['doy'] -> Package::Makepkg<| build_user == 'doy' |>

  include tozt::bootstrap
  include tozt::backups
  include tozt::git
  include tozt::misc
  include tozt::pass
  include tozt::paste
  include tozt::site
  include tozt::services
  include tozt::tools
  include tozt::ttrss
  include tozt::vpn
}