diff --git a/doc/file.README.html b/doc/file.README.html index 279b121..346baea 100644 --- a/doc/file.README.html +++ b/doc/file.README.html @@ -111,6 +111,8 @@
an additional directory /etc/nagios/conf.d is created to place the custom checks etc. without being overwritten by updates.
if ng_include_nrpeis set to true, the confdroid_nrpe module is automatically applied on clients (confdroid_nrpe must be in the catalogue then)
configures all required directories for server and clients and sets proper permissions and selinux contexts
an additional directory /etc/nagios/conf.d is created to place the custom checks etc. without being overwritten by updates.
if ng_include_nrpeis set to true, the confdroid_nrpe module is automatically applied on clients (confdroid_nrpe must be in the catalogue then)
configures all required directories for server and clients and sets proper permissions and selinux contexts
The encrypted password for the Nagios web interface. Default is ‘nagios’. Must be properly encrypted using the htpasswd utility.
+Whether to enable the context help in the Nagios web interface. Default is ‘1’.
-27 -28 29 30 31 @@ -375,10 +391,15 @@ inherited by all classes except defines. 131 132 133 -134+134 +135 +136 +137 +138 +139
# File 'manifests/params.pp', line 27
+ # File 'manifests/params.pp', line 29
class confdroid_nagios::params (
@@ -391,6 +412,9 @@ class confdroid_nagios::params (
String $ng_main_user = 'nagios',
String $ng_main_password = 'nagios',
+# cgi
+ String $ng_context_help = '1',
+
# httpd
Boolean $ng_use_https = false,
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 81067f7..f4b96a1 100644
--- a/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html
+++ b/doc/puppet_classes/confdroid_nagios_3A_3Aserver_3A_3Afiles.html
@@ -124,16 +124,16 @@ class confdroid_nagios::server::files (
) inherits confdroid_nagios::params {
require confdroid_nagios::main::dirs
-# if $ng_nagios_server == $fqdn {
-# file { $ng_nagios_cfg_file:
-# ensure => file,
-# owner => 'nagios',
-# group => 'nagios',
-# mode => '0644',
-# content => template($ng_nagios_cfg_erb),
-# notify => Service[$ng_nagios_service],
-# }
-# }
+ if $ng_nagios_server == $fqdn {
+ file { $ng_nagios_cfg_file:
+ ensure => file,
+ owner => 'nagios',
+ group => 'nagios',
+ mode => '0644',
+ content => template($ng_nagios_cfg_erb),
+ notify => Service[$ng_nagios_service],
+ }
+ }
}