OP#421 add missing parameter

This commit is contained in:
2026-02-13 15:37:29 +01:00
parent 63d7d8c1b8
commit 571bbd51fb

View File

@@ -20,6 +20,8 @@
# @param [String] ng_u_shell The login shell for the Nagios user. Default is '/sbin/nologin'.
# @param [String] ng_u_home The home directory for the Nagios user. Default is '/home/nagios'.
# @param [Integer] ng_u_uid The user ID for the Nagios user. Default is 1004.
# @param [Boolean] ng_include_nrpe Whether to include the NRPE client on the
# Nagios clients. Default is true.
###############################################################################
class confdroid_nagios::params (
@@ -28,6 +30,7 @@ class confdroid_nagios::params (
Array $ng_reqpackages_server = ['nagios','nagios-devel'],
Array $ng_reqpackages_client = ['net-snmp-utils','nagios-plugins','nagios-plugins-all','nagios-plugins-nrpe','nagios-common'],
String $ng_pkg_ensure = 'present',
Boolean $ng_include_nrpe = true,
# user
String $ng_user = 'nagios',