Fixing puppet-lint errors.

This commit is contained in:
Timo Mkinen 2012-03-27 14:41:39 +03:00
parent 2f83cb7d4a
commit 34c36045fa
59 changed files with 995 additions and 990 deletions

View file

@ -9,9 +9,9 @@ class mutt {
$mail_server = "mail.${domain}"
}
if ! $mail_domain {
$mail_domain = "${domain}"
$mail_domain = $domain
}
case $operatingsystem {
openbsd: { $muttconfdir = "/etc/mutt/Muttrc" }
default: { $muttconfdir = "/etc" }
@ -26,8 +26,8 @@ class mutt {
}
file { "Muttrc.local":
name => "${muttconfdir}/Muttrc.local",
ensure => present,
name => "${muttconfdir}/Muttrc.local",
content => template("mutt/Muttrc.local.erb"),
mode => 0644,
owner => root,
@ -37,5 +37,5 @@ class mutt {
},
require => Exec["add-local-mutt-config"],
}
}