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’.

+
+ + + +
  • + + ng_user + + + (String) + + + (defaults to: 'nagios') + + + — +
    +

    The name of the Nagios user to be created on the Nagios server. Default is ‘nagios’.

    +
    + +
  • + +
  • + + ng_u_comment + + + (String) + + + (defaults to: 'Nagios User') + + + — +
    +

    The comment field for the Nagios user. Default is ‘Nagios User’.

    +
    + +
  • + +
  • + + ng_u_groups + + + (String) + + + (defaults to: 'nagios') + + + — +
    +

    The group(s) to which the Nagios user should be added. Default is ‘nagios’.

    +
    + +
  • + +
  • + + ng_u_shell + + + (String) + + + (defaults to: '/sbin/nologin') + + + — +
    +

    The login shell for the Nagios user. Default is ‘/sbin/nologin’.

    +
    + +
  • + +
  • + + ng_user_home + + + (String) + + + (defaults to: '/home/nagios') + + + — +
    +

    The home directory for the Nagios user. Default is ‘/home/nagios’.

    +
    + +
  • + +
  • + + ng_u_uid + + + (Integer) + + + (defaults to: 1004) + + + — +
    +

    The user ID for the Nagios user. Default is 1004.

  • @@ -194,14 +302,6 @@ inherited by all classes except defines.
     
     
    -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']