summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-10-03 12:50:29 -0400
committerJesse Luehrs <doy@tozt.net>2021-10-03 12:50:29 -0400
commit1d1e7008bf646998f2dea9b260843cd1c97524f8 (patch)
treeea955bf6987c9b3d8a413ae30ed2d3e57f46f3c5 /manifests
parentae5d8d3bb27f5cf997b52d1f15d07211c3fe52d1 (diff)
downloadpuppet-tozt-1d1e7008bf646998f2dea9b260843cd1c97524f8.tar.gz
puppet-tozt-1d1e7008bf646998f2dea9b260843cd1c97524f8.zip
remove mail2 config for now
Diffstat (limited to 'manifests')
-rw-r--r--manifests/00global.pp7
-rw-r--r--manifests/mail2.pp13
2 files changed, 3 insertions, 17 deletions
diff --git a/manifests/00global.pp b/manifests/00global.pp
index 608a37a..078bdef 100644
--- a/manifests/00global.pp
+++ b/manifests/00global.pp
@@ -2,10 +2,9 @@ $default_user = 'doy'
$vpn_ips = {
'hornet' => '10.49.0.2',
'mail' => '10.49.0.3',
- 'mail2' => '10.49.0.4',
- 'partofme' => '10.49.0.5',
- 'phone' => '10.49.0.6',
- 'tozt' => '10.49.0.7',
+ 'partofme' => '10.49.0.4',
+ 'phone' => '10.49.0.5',
+ 'tozt' => '10.49.0.6',
}
Package::Makepkg {
diff --git a/manifests/mail2.pp b/manifests/mail2.pp
deleted file mode 100644
index a4e1129..0000000
--- a/manifests/mail2.pp
+++ /dev/null
@@ -1,13 +0,0 @@
-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
-}