postfix + cyrus: Fix key perms.
This commit is contained in:
parent
69132d618c
commit
7ad4fb5826
2 changed files with 3 additions and 3 deletions
|
@ -57,9 +57,9 @@ class cyrus {
|
||||||
file { "${ssl::private}/cyrus.key":
|
file { "${ssl::private}/cyrus.key":
|
||||||
ensure => present,
|
ensure => present,
|
||||||
source => $cyrus_key,
|
source => $cyrus_key,
|
||||||
mode => "0600",
|
mode => "0640",
|
||||||
owner => "root",
|
owner => "root",
|
||||||
group => "root",
|
group => "mail",
|
||||||
notify => Service["cyrus-imapd"],
|
notify => Service["cyrus-imapd"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -86,7 +86,7 @@ class postfix {
|
||||||
source => $postfix_key,
|
source => $postfix_key,
|
||||||
mode => "0640",
|
mode => "0640",
|
||||||
owner => "root",
|
owner => "root",
|
||||||
group => "root",
|
group => "postfix",
|
||||||
require => Package["postfix"],
|
require => Package["postfix"],
|
||||||
notify => Service["postfix"],
|
notify => Service["postfix"],
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue