From: Silvio Rhatto Date: Mon, 21 Jan 2013 21:35:02 +0000 (-0200) Subject: Fixing mail::regular and setting it the default X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=7a795af05b823a127658db71ee331c09f4b600f6;p=puppet-mail.git Fixing mail::regular and setting it the default --- diff --git a/manifests/regular.pp b/manifests/regular.pp index da35e33..52f5235 100644 --- a/manifests/regular.pp +++ b/manifests/regular.pp @@ -1,5 +1,5 @@ class mail::regular { postfix::config { "virtual_alias_maps": - value => 'hash://postfix/virtual, regexp:/etc/postfix/virtual_regexp', + value => 'hash:/etc/postfix/virtual, regexp:/etc/postfix/virtual_regexp', } } diff --git a/manifests/system.pp b/manifests/system.pp index 872f170..a9568a1 100644 --- a/manifests/system.pp +++ b/manifests/system.pp @@ -32,7 +32,7 @@ class mail::system { include mail::spamassassin # Virtual mail system - case hiera('mail_virtual', True) { + case hiera('mail_virtual', false) { true: { include mail::virtual }