aboutsummaryrefslogtreecommitdiff
path: root/manifests/classes/postfix-mailman.pp
diff options
context:
space:
mode:
authorFrancois Deppierraz <francois@ip-10-226-54-102.eu-west-1.compute.internal>2009-03-02 12:29:31 +0100
committerFrancois Deppierraz <francois@ip-10-226-54-102.eu-west-1.compute.internal>2009-03-02 12:29:31 +0100
commit29c3c8519c96b40f528e9e1985568fffe8ce46a2 (patch)
treeefb721871f0252e6c3ea21822f86980ae932f4b3 /manifests/classes/postfix-mailman.pp
parent8157cc71d8a24633035eb92ef7b34657e4785f29 (diff)
downloadpuppet-postfix-29c3c8519c96b40f528e9e1985568fffe8ce46a2.tar.gz
puppet-postfix-29c3c8519c96b40f528e9e1985568fffe8ce46a2.tar.bz2
postix-ng -> postfix
find . -type f -exec perl -pi -e 's/postfix-ng/postfix/' {} \;
Diffstat (limited to 'manifests/classes/postfix-mailman.pp')
-rw-r--r--manifests/classes/postfix-mailman.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/classes/postfix-mailman.pp b/manifests/classes/postfix-mailman.pp
index 6a34f45..ace2af1 100644
--- a/manifests/classes/postfix-mailman.pp
+++ b/manifests/classes/postfix-mailman.pp
@@ -1,19 +1,19 @@
-class postfix-ng::mailman {
+class postfix::mailman {
$postfix_ng_smtp_listen = "0.0.0.0"
- include postfix-ng
+ include postfix
- postfix-ng::config {
+ postfix::config {
"mydestination": value => "";
"virtual_alias_maps": value => "hash:/etc/postfix/virtual";
"transport_maps": value => "hash:/etc/postfix/transport";
"mailman_destination_recipient_limit": value => "1", nonstandard => true;
}
- postfix-ng::hash { "/etc/postfix/virtual":
+ postfix::hash { "/etc/postfix/virtual":
ensure => present,
}
- postfix-ng::hash { "/etc/postfix/transport":
+ postfix::hash { "/etc/postfix/transport":
ensure => present,
}