aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postfix/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/postfix/manifests/init.pp')
-rw-r--r--modules/postfix/manifests/init.pp15
1 files changed, 14 insertions, 1 deletions
diff --git a/modules/postfix/manifests/init.pp b/modules/postfix/manifests/init.pp
index 980e3271..3cdff360 100644
--- a/modules/postfix/manifests/init.pp
+++ b/modules/postfix/manifests/init.pp
@@ -4,7 +4,7 @@ class postfix {
package { postfix:
ensure => installed
}
- package { 'nail':
+ package { 'nail':
ensure => installed
}
service { postfix:
@@ -30,4 +30,17 @@ class postfix {
content => template("postfix/simple_relay_main.cf"),
}
}
+
+ class primary_smtp inherits base {
+ file { '/etc/postfix/main.cf':
+ content => template("postfix/primary_main.cf"),
+ }
+ }
+
+ class secondary_smtp inherits base {
+ file { '/etc/postfix/main.cf':
+ content => template("postfix/secondary_main.cf"),
+ }
+ }
+
}