diff options
author | Francois Deppierraz <francois.deppierraz@camptocamp.com> | 2009-12-22 20:28:15 +0100 |
---|---|---|
committer | Francois Deppierraz <francois.deppierraz@camptocamp.com> | 2009-12-22 20:30:26 +0100 |
commit | 18661db4da9bb3f599ee473993c267de918fa0ce (patch) | |
tree | 8910cd4f931b54ab8609279541108ad098ea5b60 /manifests/classes/postfix-mta.pp | |
parent | 8a23f6d5b1022d79432734366e131af6f5d3b46f (diff) | |
download | puppet-postfix-18661db4da9bb3f599ee473993c267de918fa0ce.tar.gz puppet-postfix-18661db4da9bb3f599ee473993c267de918fa0ce.tar.bz2 |
Breaks backward compat: A few $postfix_ng_ variables were changed into $postfix_ variables
Diffstat (limited to 'manifests/classes/postfix-mta.pp')
-rw-r--r-- | manifests/classes/postfix-mta.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/classes/postfix-mta.pp b/manifests/classes/postfix-mta.pp index 9046bad..16b1981 100644 --- a/manifests/classes/postfix-mta.pp +++ b/manifests/classes/postfix-mta.pp @@ -2,7 +2,7 @@ # == Class: postfix::mta # # This class configures a minimal MTA, listening on -# $postfix_ng_smtp_listen (default to localhost) and delivering mail to +# $postfix_smtp_listen (default to localhost) and delivering mail to # $postfix_mydestination (default to $fqdn). # # A valid relay host is required ($postfix_relayhost) for outbound email. @@ -19,7 +19,7 @@ # # node "toto.example.com" { # $postfix_relayhost = "mail.example.com" -# $postfix_ng_smtp_listen = "0.0.0.0" +# $postfix_smtp_listen = "0.0.0.0" # $postfix_mydestination = "\$myorigin, myapp.example.com" # # include postfix::mta |