postfix + cyrus: Fix key perms.

This commit is contained in:
Lari Huttunen 2013-03-05 16:23:37 +01:00
parent 69132d618c
commit 7ad4fb5826
2 changed files with 3 additions and 3 deletions

View file

@ -57,9 +57,9 @@ class cyrus {
file { "${ssl::private}/cyrus.key":
ensure => present,
source => $cyrus_key,
mode => "0600",
mode => "0640",
owner => "root",
group => "root",
group => "mail",
notify => Service["cyrus-imapd"],
}

View file

@ -86,7 +86,7 @@ class postfix {
source => $postfix_key,
mode => "0640",
owner => "root",
group => "root",
group => "postfix",
require => Package["postfix"],
notify => Service["postfix"],
}