Bugfix: set defaults for all variables used in templates.

At least puppet 2.6.0 demands this.
This commit is contained in:
intrigeri 2010-10-18 20:37:54 +02:00
parent ee35af20b4
commit fc9e549f46

View file

@ -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