diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-03-08 11:06:31 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-03-08 11:06:31 -0300 |
commit | b7c9137450c5d488838e9a8dd668b49cab46c842 (patch) | |
tree | 1345d39ee211c0bf65172d3a5ae71d04c9788c2d /manifests | |
parent | b6f3cbd64061488d8bc4364affc27550095f5c45 (diff) | |
download | puppet-mail-b7c9137450c5d488838e9a8dd668b49cab46c842.tar.gz puppet-mail-b7c9137450c5d488838e9a8dd668b49cab46c842.tar.bz2 |
Fix site_mail order for opendkim
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/opendkim.pp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/opendkim.pp b/manifests/opendkim.pp index aade743..1a30dba 100644 --- a/manifests/opendkim.pp +++ b/manifests/opendkim.pp @@ -16,8 +16,8 @@ class mail::opendkim { owner => root, group => root, mode => 0644, - source => [ "puppet:///modules/mail/opendkim/opendkim.conf", - "puppet:///modules/site_mail/opendkim/opendkim.conf" ], + source => [ "puppet:///modules/site_mail/opendkim/opendkim.conf", + "puppet:///modules/mail/opendkim/opendkim.conf" ], require => Package['opendkim'], } @@ -42,8 +42,8 @@ class mail::opendkim { owner => root, group => root, mode => 0644, - source => [ "puppet:///modules/mail/opendkim/TrustedHosts", - "puppet:///modules/site_mail/opendkim/TrustedHosts" ], + source => [ "puppet:///modules/site_mail/opendkim/TrustedHosts", + "puppet:///modules/mail/opendkim/TrustedHosts" ], require => File['/etc/opendkim'], } @@ -52,8 +52,8 @@ class mail::opendkim { owner => root, group => root, mode => 0644, - source => [ "puppet:///modules/mail/opendkim/KeyTable", - "puppet:///modules/site_mail/opendkim/KeyTable" ], + source => [ "puppet:///modules/site_mail/opendkim/KeyTable", + "puppet:///modules/mail/opendkim/KeyTable" ], require => File['/etc/opendkim'], } @@ -62,8 +62,8 @@ class mail::opendkim { owner => root, group => root, mode => 0644, - source => [ "puppet:///modules/mail/opendkim/SigningTable", - "puppet:///modules/site_mail/opendkim/SigningTable" ], + source => [ "puppet:///modules/site_mail/opendkim/SigningTable", + "puppet:///modules/mail/opendkim/SigningTable" ], require => File['/etc/opendkim'], } |