From: Tollef Fog Heen Date: Sun, 8 Oct 2017 05:34:43 +0000 (+0200) Subject: Ensure mirror-health is restarted after the daemon-reload X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=439c3332fbc082f1089afaf0eb1a127e23420181;p=mirror%2Fdsa-puppet.git Ensure mirror-health is restarted after the daemon-reload --- diff --git a/modules/roles/manifests/mirror_health.pp b/modules/roles/manifests/mirror_health.pp index 2a0413bb0..e390833fc 100644 --- a/modules/roles/manifests/mirror_health.pp +++ b/modules/roles/manifests/mirror_health.pp @@ -32,6 +32,7 @@ define roles::mirror_health ( } service { "mirror-health-${check_service}": - ensure => running, + require => Exec['systemctl daemon-reload'], + ensure => running, } }