From: Peter Palfrader Date: Thu, 17 Dec 2015 15:49:18 +0000 (+0100) Subject: reload repro when www.debian.org cert changes X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=2dbe8167237546b39709a77eacbf3f74994ba664;p=mirror%2Fdsa-puppet.git reload repro when www.debian.org cert changes --- diff --git a/modules/roles/manifests/rtc.pp b/modules/roles/manifests/rtc.pp index 4a9a30350..11723441e 100644 --- a/modules/roles/manifests/rtc.pp +++ b/modules/roles/manifests/rtc.pp @@ -2,6 +2,7 @@ class roles::rtc { ssl::service { 'www.debian.org': tlsaport => 0, + notify => Exec['service repro reload'], } ssl::service { 'sip-ws.debian.org': @@ -89,4 +90,10 @@ class roles::rtc { file { '/etc/monit/monit.d/50rtc': ensure => absent, } + + exec { 'service repro reload': + path => '/usr/bin:/usr/sbin:/bin:/sbin', + command => 'service repro reload', + refreshonly => true, + } }