postfix.init.pp: Had forgotten the placement spec for the X.509 files.

This commit is contained in:
Lari Huttunen 2013-03-05 15:22:18 +01:00
parent c0a3a300a8
commit 145d04530b

View file

@ -71,6 +71,25 @@ class postfix {
$postfix_interfaces = "localhost"
}
file { "${ssl::certs}/postfix.crt":
ensure => present,
source => $postfix_cert,
mode => "0644",
owner => "root",
group => "root"
require => Package["postfix"],
notify => Service["postfix"],
}
file { "${ssl::private}/postfix.key":
ensure => present,
source => $postfix_key,
mode => "0640",
owner => "root",
group => "root",
require => Package["postfix"],
notify => Service["postfix"],
}
if $postgrey {
case $::operatingsystem {