summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-07-05 19:01:01 -0400
committerJesse Luehrs <doy@tozt.net>2021-07-05 19:01:01 -0400
commit0c7b84faf05e510dfc38f8f69b8a107d1ada8c80 (patch)
tree438f704e6b043d1bcf251900f5a426af87f025c8 /manifests
parent573a37010fac2c1ff893257be19a1f2842ce11e1 (diff)
downloadpuppet-tozt-0c7b84faf05e510dfc38f8f69b8a107d1ada8c80.tar.gz
puppet-tozt-0c7b84faf05e510dfc38f8f69b8a107d1ada8c80.zip
start building a new mail server
Diffstat (limited to 'manifests')
-rw-r--r--manifests/mail2.pp13
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/mail2.pp b/manifests/mail2.pp
new file mode 100644
index 0000000..a4e1129
--- /dev/null
+++ b/manifests/mail2.pp
@@ -0,0 +1,13 @@
+node 'mail2', 'mail2.localdomain' {
+ $persistent_data = '/media/persistent'
+ include mail2::persistent
+ Class['mail2::persistent'] -> Class['base']
+
+ include base
+
+ include mail2::operatingsystem
+ Class['mail2::operatingsystem'] -> Package<| provider == "pacman" |>
+
+ include mail2::backups
+ include mail2::monitoring
+}