diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-04-07 15:40:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-04-07 15:40:42 -0300 |
commit | 531d802bad6894a9b81393053b3e6ac7fdde2cba (patch) | |
tree | d6e85e01ca5569ef162e8678e846c5c4b41f5a4d /manifests/init.pp | |
parent | 59010a1c304801db6423f67d656399478fc603f0 (diff) | |
download | puppet-postfix-531d802bad6894a9b81393053b3e6ac7fdde2cba.tar.gz puppet-postfix-531d802bad6894a9b81393053b3e6ac7fdde2cba.tar.bz2 |
Adding transport_regexp and virtual_regexp management
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 63a50b9..587f30b 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -88,6 +88,12 @@ class postfix { if $postfix_use_amavisd == 'yes' { include postfix::amavis } + if $postfix_manage_transport_regexp == 'yes' { + include postfix::transport_regexp + } + if $postfix_manage_virtual_regexp == 'yes' { + include postfix::virtual_regexp + } package { ["postfix", "mailx"]: ensure => installed |