From fc9e549f46dc47ef69980aaa150361fc347b801a Mon Sep 17 00:00:00 2001 From: intrigeri Date: Mon, 18 Oct 2010 20:37:54 +0200 Subject: Bugfix: set defaults for all variables used in templates. At least puppet 2.6.0 demands this. --- manifests/classes/postfix.pp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'manifests') diff --git a/manifests/classes/postfix.pp b/manifests/classes/postfix.pp index 7f9e91c..aa04cfc 100644 --- a/manifests/classes/postfix.pp +++ b/manifests/classes/postfix.pp @@ -40,7 +40,21 @@ class postfix { case $root_mail_recipient { "": { $root_mail_recipient = "nobody" } } - + case $postfix_use_amavisd { + "": { $postfix_use_amavisd = "no" } + } + case $postfix_use_dovecot_lda { + "": { $postfix_use_dovecot_lda = "no" } + } + case $postfix_use_schleuder { + "": { $postfix_use_schleuder = "no" } + } + case $postfix_use_sympa { + "": { $postfix_use_sympa = "no" } + } + case $postfix_mastercf_tail { + "": { $postfix_mastercf_tail = "" } + } package { ["postfix", "mailx"]: ensure => installed -- cgit v1.2.3