From 9ef6e21911485e842054a8a08fb7022f6a6de31f Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Thu, 12 Mar 2026 16:14:50 +0100 Subject: [PATCH] Recommit for updates in build 230 --- .../confdroid_nagios_3A_3Aparams.html | 4 ++- ...nfdroid_nagios_3A_3Aserver_3A_3Afiles.html | 28 ++++++++++++++++++- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html index 3bc11c2..bf3850b 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html @@ -4482,7 +4482,8 @@ inherited by all classes except defines. 793 794 795 -796 +796 +797
# File 'manifests/params.pp', line 449
@@ -4776,6 +4777,7 @@ class confdroid_nagios::params (
   $ng_cgi_cfg_file            = "${ng_main_dir}/cgi.cfg"
   $ng_cgi_cfg_erb             = 'confdroid_nagios/nagios/cgi_cfg.erb'
   $ng_remoteip_file           = '/etc/httpd/conf.d/loadbalancer-remoteip.conf'
+  $ng_loadmodule_file         = '/etc/httpd/conf.modules.d/10-remoteip.conf'
 
 # nagios
   $ng_target_templates        = "${ng_conf_d_dir}/nagios_templates.cfg"
diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html
index f0c0a80..26a6b18 100644
--- a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html
+++ b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html
@@ -158,7 +158,20 @@
 60
 61
 62
-63
+63 +64 +65 +66 +67 +68 +69 +70 +71 +72 +73 +74 +75 +76
# File 'manifests/server/files.pp', line 6
@@ -219,6 +232,19 @@ class confdroid_nagios::server::files (
         notify   => Service['httpd'],
       }
     }
+
+    file { $ng_loadmodule_file:
+      ensure   => file,
+      owner    => 'root',
+      group    => 'root',
+      mode     => '0644',
+      selrange => s0,
+      selrole  => object_r,
+      seltype  => httpd_conf_t,
+      seluser  => system_u,
+      content  => template('confdroid_nagios/loadbalancer/loadmodule.conf.erb'),
+      notify   => Service['httpd'],
+    }
   }
 }