]> gitweb.fluxo.info Git - puppet-mail.git/commitdiff
Fix site_mail order for opendkim
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 8 Mar 2015 14:06:31 +0000 (11:06 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 8 Mar 2015 14:06:31 +0000 (11:06 -0300)
manifests/opendkim.pp

index aade7438a4e19ec40ae748dcd0ade271beb582d7..1a30dbae7f7e9cf296bfedab3324079e8e21362d 100644 (file)
@@ -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'],
   }