From afdcc899d43076806462b8876aca5ced0faa3cd4 Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Sat, 14 Feb 2026 21:44:59 +0100 Subject: [PATCH] Recommit for updates in build 59 --- .../confdroid_nagios_3A_3Aserver_3A_3Aaccess_rules.html | 2 +- .../confdroid_nagios_3A_3Aserver_3A_3Aservice.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aaccess_rules.html b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aaccess_rules.html index b6343a5..dba7e79 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aaccess_rules.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aaccess_rules.html @@ -148,7 +148,7 @@ class confdroid_nagios::server::access_rules ( selrole => object_r, seltype => nagios_etc_t, seluser => system_u, - notify => Exec['reload_httpd'], + notify => Exec['restart_httpd'], } # manage file header diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aservice.html b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aservice.html index 9a5e1bb..8dac6fb 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aservice.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Aservice.html @@ -133,8 +133,8 @@ class confdroid_nagios::server::service ( require confdroid_nagios::server::files if $ng_nagios_server == $fqdn { require confdroid_nagios::server::access_rules - exec { 'reload_httpd': - command => 'systemctl reload httpd', + exec { 'restart_httpd': + command => 'systemctl restart httpd', path => ['/bin', '/usr/bin', '/sbin', '/usr/sbin'], refreshonly => true, } @@ -145,7 +145,7 @@ class confdroid_nagios::server::service ( enable => true, hasrestart => true, hasstatus => true, - require => Exec['reload_httpd'], + require => Exec['restart_httpd'], } } }