Bugfix: set defaults for all variables used in templates.
At least puppet 2.6.0 demands this.
This commit is contained in:
parent
ee35af20b4
commit
fc9e549f46
1 changed files with 15 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue