diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html index 2d15c4e..cb97a66 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html @@ -179,6 +179,114 @@ inherited by all classes except defines. —
The ensure value for all packages. Default is ‘present’.
+The name of the Nagios user to be created on the Nagios server. Default is ‘nagios’.
+The comment field for the Nagios user. Default is ‘Nagios User’.
+The group(s) to which the Nagios user should be added. Default is ‘nagios’.
+The login shell for the Nagios user. Default is ‘/sbin/nologin’.
+The home directory for the Nagios user. Default is ‘/home/nagios’.
+The user ID for the Nagios user. Default is 1004.
-16 -17 -18 -19 -20 -21 -22 -23 24 25 26 @@ -226,10 +326,26 @@ inherited by all classes except defines. 45 46 47 -48+48 +49 +50 +51 +52 +53 +54 +55 +56 +57 +58 +59 +60 +61 +62 +63 +64
# File 'manifests/params.pp', line 16
+ # File 'manifests/params.pp', line 24
class confdroid_nagios::params (
@@ -239,6 +355,14 @@ class confdroid_nagios::params (
Array $ng_reqpackages_client = ['net-snmp-utils','nagios-plugins','nagios-plugins-all','nagios-plugins-nrpe','nagios-common'],
String $ng_pkg_ensure = 'present',
+# user
+ String $ng_user = 'nagios',
+ String $ng_u_comment = 'Nagios User',
+ String $ng_u_groups = 'nagios',
+ String $ng_u_shell = '/sbin/nologin',
+ String $ng_user_home = '/home/nagios',
+ Integer $ng_u_uid = 1004,
+
) {
# Default facts
$fqdn = $facts['networking']['fqdn']