summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/init.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-19 22:59:10 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-19 22:59:10 -0400
commit026d8c3eb1757a1841aa91249573c668f981de65 (patch)
tree4725e79897709a2c7f7400aefd7d6a7fea8d883c /modules/tozt/manifests/init.pp
parente4416660bccbf109cd35965510bc8153bd172be9 (diff)
downloadpuppet-tozt-026d8c3eb1757a1841aa91249573c668f981de65.tar.gz
puppet-tozt-026d8c3eb1757a1841aa91249573c668f981de65.zip
Revert "move the tozt module around to allow for more host types"
This reverts commit 89c0cc84be250ba8fe5722baa35293c70c98f2a0. thinking about it more, the mail server configuration is going to be different enough (in particular, running debian rather than arch) that i don't think sharing puppet modules is going to be worthwhile
Diffstat (limited to 'modules/tozt/manifests/init.pp')
-rw-r--r--modules/tozt/manifests/init.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/modules/tozt/manifests/init.pp b/modules/tozt/manifests/init.pp
new file mode 100644
index 0000000..b13c4cd
--- /dev/null
+++ b/modules/tozt/manifests/init.pp
@@ -0,0 +1,18 @@
+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::pass
+ include tozt::site
+ include tozt::services
+ include tozt::tools
+ include tozt::vpn
+}