summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-04-06 21:56:49 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-04-06 21:56:49 -0300
commitfddb7a63f64171161d5d871eda0665c7eaeb6d59 (patch)
treec2411a0d53bf33c8f61bb644900c82d60d8e5d3a
parent825fbb72fa187296e723a77817fb936b61fa9bb7 (diff)
downloadpuppet-exim-fddb7a63f64171161d5d871eda0665c7eaeb6d59.tar.gz
puppet-exim-fddb7a63f64171161d5d871eda0665c7eaeb6d59.tar.bz2
Always notify update-exim4.conf
-rw-r--r--manifests/tls.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/tls.pp b/manifests/tls.pp
index 79147dd..d6c719c 100644
--- a/manifests/tls.pp
+++ b/manifests/tls.pp
@@ -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"],
}
}