]> gitweb.fluxo.info Git - puppet-exim.git/commitdiff
Always notify update-exim4.conf
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 7 Apr 2016 00:56:49 +0000 (21:56 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 7 Apr 2016 00:56:49 +0000 (21:56 -0300)
manifests/tls.pp

index 79147dd6d6792dc80774623016988d1bd9c011da..d6c719cb4229fe7a30982ff23db0bb5531e95893 100644 (file)
@@ -6,7 +6,7 @@ class exim::tls inherits exim {
     group  => root,
     mode   => 0644,
     source => "puppet:///modules/exim/195_exim4_config_tls_verify",
-    notify => Service["exim4"],
+    notify => Exec["update-exim4.conf"],
   }
 
   file { "/etc/exim4/conf.d/transport/30_exim4-config_remote_smtp_tls_verify":
@@ -15,7 +15,7 @@ class exim::tls inherits exim {
     group  => root,
     mode   => 0644,
     source => "puppet:///modules/exim/30_exim4-config_remote_smtp_tls_verify",
-    notify => Service["exim4"],
+    notify => Exec["update-exim4.conf"],
   }
 
   $exim_tls_verify_relay_to_domains = hiera('exim::tls_verify_relay_to_domains', '')
@@ -29,6 +29,6 @@ class exim::tls inherits exim {
     group   => root,
     mode    => 0644,
     content => "domainlist tls_verify_relay_to_domains = $exim_tls_verify_relay_to_domains\n",
-    notify  => Service["exim4"],
+    notify  => Exec["update-exim4.conf"],
   }
 }