2026-02-14 16:22:28 +01:00
|
|
|
## confdroid_nagios::params
|
2026-02-02 23:38:50 +01:00
|
|
|
# Module name: confdroid_nagios
|
|
|
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
|
|
|
# @summary Class holds all parameters for the confdroid_nagios module and is
|
2017-07-20 14:47:24 +01:00
|
|
|
# inherited by all classes except defines.
|
2026-02-10 14:04:06 +01:00
|
|
|
# @param [String] ng_nagios_server The hostname or IP address of the
|
|
|
|
|
# Nagios server. This will determine the installation selection and the
|
|
|
|
|
# of the clients to connect to the Nagios server.
|
2026-02-11 17:34:45 +01:00
|
|
|
# @param [Array] ng_reqpackages_server An array of packages to be installed on
|
|
|
|
|
# the Nagios server.
|
|
|
|
|
# @param [Array] ng_reqpackages_client An array of packages to be installed on
|
|
|
|
|
# the Nagios clients.
|
|
|
|
|
# @param [String] ng_pkg_ensure The ensure value for all packages. Default is
|
|
|
|
|
# 'present'.
|
2026-02-13 15:37:29 +01:00
|
|
|
# @param [Boolean] ng_include_nrpe Whether to include the NRPE client on the
|
|
|
|
|
# Nagios clients. Default is true.
|
2026-02-14 15:41:26 +01:00
|
|
|
# @param [Boolean] ng_use_https Whether to configure the Nagios web interface
|
|
|
|
|
# to use HTTPS. Default is false. We recommend using a reverse proxy
|
|
|
|
|
# with SSL termination in front of the Nagios web interface, so this is
|
|
|
|
|
# disabled by default.
|
2026-02-14 21:21:43 +01:00
|
|
|
# @param [String] ng_main_user The username for the Nagios web interface.
|
2026-03-01 16:15:06 +01:00
|
|
|
# Default is $ng_users.
|
2026-02-14 21:21:43 +01:00
|
|
|
# @param [String] ng_main_password The encrypted password for the Nagios web
|
2026-03-01 16:15:06 +01:00
|
|
|
# interface. Default is $ng_users. Must be properly encrypted using the
|
2026-02-14 21:40:03 +01:00
|
|
|
# htpasswd utility.
|
2026-02-21 13:44:41 +01:00
|
|
|
# @param [String] ng_context_help Whether to enable the context help in the
|
|
|
|
|
# Nagios web interface. Default is '1'.
|
2026-02-21 14:04:06 +01:00
|
|
|
# @param [String] ng_log_file The path to the Nagios log file. Default is
|
|
|
|
|
# '/var/log/nagios/nagios.log'.
|
2026-03-01 15:30:25 +01:00
|
|
|
# @param [String] ng_ping_warn The warning threshold for the check_ping
|
|
|
|
|
# command. Default is '100.0,20%'.
|
|
|
|
|
# @param [String] ng_ping_crit The critical threshold for the check_ping
|
|
|
|
|
# command. Default is '500.0,60%'.
|
|
|
|
|
# @param [String] ng_ping_ensure The ensure value for the check_ping command.
|
|
|
|
|
# Default is 'present'.
|
|
|
|
|
# @param [String] ng_disk_warn The warning threshold for the check_disk
|
|
|
|
|
# command. Default is '20%'.
|
|
|
|
|
# @param [String] ng_disk_crit The critical threshold for the check_disk
|
|
|
|
|
# command. Default is '10%'.
|
|
|
|
|
# @param [String] ng_disk_ensure The ensure value for the check_disk command.
|
|
|
|
|
# Default is 'present'.
|
|
|
|
|
# @param [String] ng_swap_warn The warning threshold for the check_swap
|
|
|
|
|
# command. Default is '20'.
|
|
|
|
|
# @param [String] ng_swap_crit The critical threshold for the check_swap
|
|
|
|
|
# command. Default is '10'.
|
|
|
|
|
# @param [String] ng_swap_ensure The ensure value for the check_swap command.
|
|
|
|
|
# Default is 'present'.
|
|
|
|
|
# @param [String] ng_users_warn The warning threshold for the check_users
|
|
|
|
|
# command. Default is '20'.
|
|
|
|
|
# @param [String] ng_users_crit The critical threshold for the check_users
|
|
|
|
|
# command. Default is '50'.
|
|
|
|
|
# @param [String] ng_users_ensure The ensure value for the check_users command.
|
|
|
|
|
# Default is 'present'.
|
|
|
|
|
# @param [String] ng_procs_tot_warn The warning threshold for the check_procs
|
|
|
|
|
# command with total processes. Default is '330'.
|
|
|
|
|
# @param [String] ng_procs_tot_crit The critical threshold for the check_procs
|
|
|
|
|
# command with total processes. Default is '400'.
|
|
|
|
|
# @param [String] ng_procs_tot_param The parameters for the check_procs command
|
|
|
|
|
# with total processes. Default is 'RDST'.
|
2026-03-01 16:15:06 +01:00
|
|
|
# @param [String] ng_procs_tot_ens The ensure value for the check_procs
|
2026-03-01 15:30:25 +01:00
|
|
|
# command with total processes. Default is 'present'.
|
|
|
|
|
# @param [String] ng_procs_z_warn The warning threshold for the check_procs
|
|
|
|
|
# command with zombie processes. Default is '10'.
|
|
|
|
|
# @param [String] ng_procs_z_crit The critical threshold for the check_procs
|
|
|
|
|
# command with zombie processes. Default is '30'.
|
|
|
|
|
# @param [String] ng_procs_z_param The parameters for the check_procs command
|
|
|
|
|
# with zombie processes. Default is 'Z'.
|
|
|
|
|
# @param [String] ng_procs_z_ensure The ensure value for the check_procs command
|
|
|
|
|
# with zombie processes. Default is 'present'.
|
|
|
|
|
# @param [String] ng_load_warn The warning threshold for the check_load command.
|
|
|
|
|
# Default is '5.00,4.00,3.00'.
|
|
|
|
|
# @param [String] ng_load_crit The critical threshold for the check_load command.
|
|
|
|
|
# Default is '10.00,6.00,4.00'.
|
|
|
|
|
# @param [String] ng_load_ensure The ensure value for the check_load command.
|
|
|
|
|
# Default is 'present'.
|
2026-03-01 16:02:31 +01:00
|
|
|
# @param [String] ng_contactgroup_name The name of the default contact group.
|
|
|
|
|
# Default is 'admins'.
|
|
|
|
|
# @param [String] ng_contactgroup_alias The alias of the default contact group.
|
|
|
|
|
# Default is 'Nagios Administrators'.
|
|
|
|
|
# @param [String] ng_contact_name The name of the default contact. Default is
|
|
|
|
|
# 'nagiosadmin'.
|
|
|
|
|
# @param [String] ng_contact_alias The alias of the default contact. Default is
|
|
|
|
|
# 'Nagios Admin'.
|
|
|
|
|
# @param [String] ng_contact_groups The contact groups for the default contact.
|
|
|
|
|
# Default is 'admins'.
|
|
|
|
|
# @param [String] ng_contact_email The email address for the default contact.
|
|
|
|
|
# Default is 'nagiosadmin@example.net'.
|
2026-03-01 16:04:02 +01:00
|
|
|
# @param [String] ng_hostgroup_name The name of the default host group. Default
|
|
|
|
|
# is 'linux-servers'.
|
|
|
|
|
# @param [String] ng_hostgroup_alias The alias of the default host group. Default
|
|
|
|
|
# is 'Linux Servers'.
|
2026-03-01 16:45:23 +01:00
|
|
|
# @param [String] ng_max_check_attempts The maximum number of check attempts
|
|
|
|
|
# before a host or service is considered down. Default is '10'.
|
2026-03-01 16:50:24 +01:00
|
|
|
# @param [Boolean] ng_enable_swap_check Whether to enable the check_swap
|
|
|
|
|
# command. Default is true.
|
2026-03-01 17:00:59 +01:00
|
|
|
# @param [String] ng_status_upd_interval The interval in seconds for Nagios
|
|
|
|
|
# to update the status file. Default is '10'.
|
|
|
|
|
# @param [String] ng_check_ext_commands Whether to allow external commands
|
|
|
|
|
# to be submitted to Nagios. Default is '1'.
|
2026-03-01 18:32:17 +01:00
|
|
|
# @param [String] ng_user The user to run the Nagios service as.
|
|
|
|
|
# Default is 'nagios'.
|
2026-03-01 18:53:03 +01:00
|
|
|
# @param [Boolean] ng_enable_target Whether to enable the generation of host and
|
|
|
|
|
# service configuration files for the Nagios server. Default is true.
|
2026-03-02 00:08:55 +01:00
|
|
|
# @param [String] ng_contactgroup_members The members of the default contact
|
|
|
|
|
# group. Default is 'nagiosadmin'.
|
2026-03-02 01:36:59 +01:00
|
|
|
# @param [Boolean] ng_purge_target Whether to purge unmanaged host and services
|
|
|
|
|
# configuration files. Default is true.
|
2026-03-05 11:35:22 +01:00
|
|
|
################################################################################
|
2026-02-02 23:38:50 +01:00
|
|
|
class confdroid_nagios::params (
|
2023-07-23 15:43:38 +02:00
|
|
|
|
2026-02-10 14:04:06 +01:00
|
|
|
# main
|
2026-02-14 15:54:50 +01:00
|
|
|
String $ng_nagios_server = 'nagios.example.net',
|
2026-03-01 16:27:48 +01:00
|
|
|
Array $ng_reqpackages_server = ['nagios','nagios-devel'],
|
2026-02-14 15:54:50 +01:00
|
|
|
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,
|
2026-03-01 16:18:01 +01:00
|
|
|
String $ng_main_user = 'nagios',
|
|
|
|
|
String $ng_main_password = 'nagios',
|
2026-03-01 16:45:23 +01:00
|
|
|
String $ng_max_check_attempts = '10',
|
2026-03-01 17:00:59 +01:00
|
|
|
String $ng_status_upd_interval = '10',
|
|
|
|
|
String $ng_check_ext_commands = '1',
|
2026-03-01 18:32:17 +01:00
|
|
|
String $ng_user = 'nagios',
|
2026-03-01 18:53:03 +01:00
|
|
|
Boolean $ng_enable_target = true,
|
2026-03-02 01:36:59 +01:00
|
|
|
Boolean $ng_purge_target = true,
|
2026-03-01 16:56:21 +01:00
|
|
|
|
2026-03-01 16:02:31 +01:00
|
|
|
# contact groups
|
|
|
|
|
String $ng_contactgroup_name = 'admins',
|
|
|
|
|
String $ng_contactgroup_alias = 'Nagios Administrators',
|
2026-03-01 17:32:00 +01:00
|
|
|
String $ng_contactgroup_members = 'nagiosadmin',
|
2026-03-01 16:02:31 +01:00
|
|
|
|
|
|
|
|
# contacts
|
|
|
|
|
String $ng_contact_name = 'nagiosadmin',
|
|
|
|
|
String $ng_contact_alias = 'Nagios Admin',
|
|
|
|
|
String $ng_contact_groups = 'admins',
|
|
|
|
|
String $ng_contact_email = 'nagiosadmin@example.net',
|
|
|
|
|
|
2026-03-01 16:04:02 +01:00
|
|
|
# hostgroups
|
|
|
|
|
String $ng_hostgroup_name = 'linux-servers',
|
|
|
|
|
String $ng_hostgroup_alias = 'Linux Servers',
|
|
|
|
|
|
2026-02-21 14:04:06 +01:00
|
|
|
# nagios.cfg
|
2026-02-28 15:52:55 +01:00
|
|
|
String $ng_log_file = '/var/log/nagios/nagios.log',
|
2026-02-21 14:04:06 +01:00
|
|
|
|
|
|
|
|
# cgi.cfg
|
2026-02-21 13:44:41 +01:00
|
|
|
String $ng_context_help = '1',
|
|
|
|
|
|
2026-02-14 15:41:26 +01:00
|
|
|
# httpd
|
2026-02-28 15:52:55 +01:00
|
|
|
Boolean $ng_use_https = false,
|
2026-02-14 15:41:26 +01:00
|
|
|
|
2026-03-01 15:12:15 +01:00
|
|
|
# check command parameters
|
|
|
|
|
## ping
|
|
|
|
|
String $ng_ping_warn = '100.0,20%',
|
|
|
|
|
String $ng_ping_crit = '500.0,60%',
|
|
|
|
|
String $ng_ping_ensure = 'present',
|
|
|
|
|
## disk
|
|
|
|
|
String $ng_disk_warn = '20%',
|
|
|
|
|
String $ng_disk_crit = '10%' ,
|
|
|
|
|
String $ng_disk_ensure = 'present',
|
|
|
|
|
# swap
|
|
|
|
|
String $ng_swap_warn = '20',
|
|
|
|
|
String $ng_swap_crit = '10',
|
|
|
|
|
String $ng_swap_ensure = 'present',
|
|
|
|
|
# users
|
2026-03-01 16:15:06 +01:00
|
|
|
String $ng_users_warn = '20',
|
|
|
|
|
String $ng_users_crit = '50',
|
|
|
|
|
String $ng_users_ensure = 'present',
|
2026-03-01 15:12:15 +01:00
|
|
|
#total procs
|
|
|
|
|
String $ng_procs_tot_warn = '330',
|
|
|
|
|
String $ng_procs_tot_crit = '400',
|
|
|
|
|
String $ng_procs_tot_param = 'RDST',
|
|
|
|
|
String $ng_procs_tot_ens = 'present',
|
|
|
|
|
# zombie procs
|
|
|
|
|
String $ng_procs_z_warn = '10',
|
|
|
|
|
String $ng_procs_z_crit = '30',
|
|
|
|
|
String $ng_procs_z_param = 'Z',
|
|
|
|
|
String $ng_procs_z_ensure = 'present',
|
|
|
|
|
# load
|
|
|
|
|
String $ng_load_warn = '5.00,4.00,3.00',
|
|
|
|
|
String $ng_load_crit = '10.00,6.00,4.00',
|
|
|
|
|
String $ng_load_ensure = 'present',
|
|
|
|
|
|
2026-03-01 16:50:24 +01:00
|
|
|
# single nagios checks
|
|
|
|
|
Boolean $ng_enable_swap_check = true,
|
|
|
|
|
|
2026-02-11 17:34:45 +01:00
|
|
|
) {
|
2026-02-11 17:46:37 +01:00
|
|
|
# Default facts
|
|
|
|
|
$fqdn = $facts['networking']['fqdn']
|
2026-03-01 18:32:17 +01:00
|
|
|
$hostname = $facts['networking']['hostname']
|
2026-02-11 17:46:37 +01:00
|
|
|
$domain = $facts['networking']['domain']
|
|
|
|
|
$os_name = $facts['os']['name']
|
|
|
|
|
$os_release = $facts['os']['release']['major']
|
|
|
|
|
|
2026-02-11 17:34:45 +01:00
|
|
|
# service
|
2026-03-01 18:40:19 +01:00
|
|
|
$ng_service = 'nagios'
|
2026-02-11 17:34:45 +01:00
|
|
|
|
|
|
|
|
# directories
|
|
|
|
|
$ng_main_dir = '/etc/nagios'
|
|
|
|
|
$ng_conf_d_dir = "${ng_main_dir}/conf.d"
|
|
|
|
|
$ng_objects_dir = "${ng_main_dir}/objects"
|
|
|
|
|
$ng_private_dir = "${ng_main_dir}/private"
|
|
|
|
|
$ng_usr_incl = '/usr/include/nagios'
|
|
|
|
|
$ng_lib_dir = '/usr/lib64/nagios'
|
|
|
|
|
$ng_log_dir = '/var/log/nagios'
|
|
|
|
|
$ng_log_archives = "${ng_log_dir}/archives"
|
|
|
|
|
$ng_spool_dir = '/var/spool/nagios'
|
2026-02-12 17:16:08 +01:00
|
|
|
$ng_usr_share = '/usr/share/nagios'
|
|
|
|
|
$ng_share_html = "${ng_usr_share}/html"
|
|
|
|
|
$ng_run_dir = '/var/run/nagios'
|
|
|
|
|
$ng_cmd_dir = "${ng_spool_dir}/cmd"
|
|
|
|
|
$ng_checkresults_dir = "${ng_spool_dir}/checkresults"
|
2026-02-10 14:04:06 +01:00
|
|
|
|
2026-02-14 15:41:26 +01:00
|
|
|
# files
|
|
|
|
|
$ng_nagios_cfg_file = "${ng_main_dir}/nagios.cfg"
|
|
|
|
|
$ng_nagios_cfg_erb = 'confdroid_nagios/nagios/nagios_cfg.erb'
|
2026-03-01 14:46:40 +01:00
|
|
|
$ng_cgi_cfg_file = "${ng_main_dir}/cgi.cfg"
|
|
|
|
|
$ng_cgi_cfg_erb = 'confdroid_nagios/nagios/cgi_cfg.erb'
|
2026-02-14 15:41:26 +01:00
|
|
|
|
|
|
|
|
# nagios
|
|
|
|
|
$ng_target_templates = "${ng_conf_d_dir}/nagios_templates.cfg"
|
|
|
|
|
$ng_templates_head_erb = 'confdroid_nagios/nagios/templates_cfg_head.erb'
|
|
|
|
|
$ng_templates_rule_erb = 'confdroid_nagios/nagios/templates_cfg_rule.erb'
|
|
|
|
|
$ng_tgt_timeperiods_base = "${ng_conf_d_dir}/nagios_timeperiods.cfg"
|
2026-03-01 18:15:28 +01:00
|
|
|
$ng_tgt_timep_add = "${ng_conf_d_dir}/nagios_timeperiods.cfg"
|
2026-02-14 15:41:26 +01:00
|
|
|
$ng_tgt_timep_head_erb = 'confdroid_nagios/nagios/timeperiods_cfg_head.erb'
|
|
|
|
|
$ng_tgt_timep_rule_erb = 'confdroid_nagios/nagios/timeperiods_cfg_rule.erb'
|
|
|
|
|
$ng_target_localhost = "${ng_conf_d_dir}/nagios_localhost.cfg"
|
|
|
|
|
$ng_target_host = "${ng_conf_d_dir}/nagios_host.cfg"
|
|
|
|
|
$ng_target_hostgroup_base = "${ng_conf_d_dir}/nagios_hostgroups_base.cfg"
|
2026-03-01 18:15:28 +01:00
|
|
|
$ng_tgt_hostgroup_add = "${ng_conf_d_dir}/nagios_hostgroups.cfg"
|
2026-02-14 15:41:26 +01:00
|
|
|
$ng_tgt_hostgrp_head_erb = 'confdroid_nagios/nagios/hostgroups_cfg_head.erb'
|
|
|
|
|
$ng_tgt_hostgrp_rule_erb = 'confdroid_nagios/nagios/hostgroups_cfg_rule.erb'
|
|
|
|
|
$ng_target_hostdep = "${ng_conf_d_dir}/nagios_hostdependency.cfg"
|
|
|
|
|
$ng_target_hostesc = "${ng_conf_d_dir}/nagios_hostescalation.cfg"
|
|
|
|
|
$ng_target_hostext = "${ng_conf_d_dir}/nagios_hostextinfo.cfg"
|
|
|
|
|
$ng_target_service = "${ng_conf_d_dir}/nagios_service.cfg"
|
|
|
|
|
$ng_target_svcgrp_base = "${ng_conf_d_dir}/nagios_servicegroups_base.cfg"
|
2026-03-01 18:15:28 +01:00
|
|
|
$ng_tgt_servicegroup_add = "${ng_conf_d_dir}/nagios_servicegroups.cfg"
|
2026-02-14 15:41:26 +01:00
|
|
|
$ng_tgt_svcgrp_head_erb = 'confdroid_nagios/nagios/svcgroups_cfg_head.erb'
|
|
|
|
|
$ng_tgt_svcgrp_rule_erb = 'confdroid_nagios/nagios/svcgroups_cfg_rule.erb'
|
|
|
|
|
$ng_target_base_contact = "${ng_conf_d_dir}/nagios_contact_base.cfg"
|
2026-03-02 15:01:55 +01:00
|
|
|
$ng_target_add_contact = "${ng_conf_d_dir}/nagios_contact.cfg"
|
2026-02-14 15:41:26 +01:00
|
|
|
$ng_contacts_head_erb = 'confdroid_nagios/nagios/contacts_cfg_head.erb'
|
|
|
|
|
$ng_contacts_rule_erb = 'confdroid_nagios/nagios/contacts_cfg_rule.erb'
|
|
|
|
|
$ng_tgt_contactgroup_base = "${ng_conf_d_dir}/nagios_contactgroup_base.cfg"
|
2026-03-01 18:15:28 +01:00
|
|
|
$ng_tgt_contactgroup_add = "${ng_conf_d_dir}/nagios_contactgroup.cfg"
|
2026-02-14 15:41:26 +01:00
|
|
|
$ng_cntctgrps_head_erb = 'confdroid_nagios/nagios/contactgroups_cfg_head.erb'
|
|
|
|
|
$ng_cntctgrps_rule_erb = 'confdroid_nagios/nagios/contactgroups_cfg_rule.erb'
|
|
|
|
|
$ng_target_command = "${ng_conf_d_dir}/nagios_commands_base.cfg"
|
2026-03-06 12:23:23 +01:00
|
|
|
$ng_service_cmd = 'check_nagios!/var/spool/nagios/status.dat!5!/usr/sbin/nagios'
|
2026-02-28 15:52:55 +01:00
|
|
|
$ng_htpasswd_file = "${ng_main_dir}/passwd"
|
|
|
|
|
$ng_htpasswd_head = 'confdroid_nagios/nagios/htpasswd_head.erb'
|
|
|
|
|
$ng_htpasswd_rule = 'confdroid_nagios/nagios/htpasswd_rule.erb'
|
2026-03-01 16:56:21 +01:00
|
|
|
$ng_resource_file = "${ng_private_dir}/resource.cfg"
|
2026-02-28 16:16:59 +01:00
|
|
|
$ng_resource_erb = 'confdroid_nagios/nagios/resource_cfg.erb'
|
2026-03-01 16:56:21 +01:00
|
|
|
$ng_object_cache_file = "${ng_spool_dir}/objects.cache"
|
|
|
|
|
$ng_precached_obj_file = "${ng_spool_dir}/objects.precache"
|
|
|
|
|
$ng_status_file = "${ng_log_dir}/status.dat"
|
2026-02-14 15:41:26 +01:00
|
|
|
|
2026-02-21 14:21:14 +01:00
|
|
|
## old
|
|
|
|
|
$ng_taccgi_erb = 'confdroid_nagios/selinux/taccgi.erb'
|
|
|
|
|
$ng_statcgi_erb = 'confdroid_nagios/selinux/statuscgi.erb'
|
|
|
|
|
$ng_statdat_erb = 'confdroid_nagios/selinux/statusdat.erb'
|
|
|
|
|
$ng_checknrpe_erb = 'confdroid_nagios/selinux/checknrpe.erb'
|
|
|
|
|
$ng_checknagios_erb = 'confdroid_nagios/selinux/checknagios.erb'
|
|
|
|
|
$ng_nagios_conf = '/etc/httpd/conf.d/nagios.conf'
|
|
|
|
|
$ng_nagios_conf_erb = 'confdroid_nagios/httpd/nagios_conf.erb'
|
|
|
|
|
$ng_welcome_conf = '/etc/httpd/conf.d/welcome.conf'
|
|
|
|
|
$ng_welcome_conf_erb = 'confdroid_nagios/httpd/welcome_conf.erb'
|
|
|
|
|
$ng_forward_conf = '/etc/httpd/conf.d/nagios_forward.conf'
|
|
|
|
|
$ng_forward_conf_erb = 'confdroid_nagios/httpd/forward_conf.erb'
|
|
|
|
|
$ng_get_cert_erb = 'confdroid_nagios/certbot/get_cert.erb'
|
|
|
|
|
$ng_unless_get_cert = 'confdroid_nagios/certbot/unless_get_cert.erb'
|
|
|
|
|
$ng_unless_renew_erb = 'confdroid_nagios/certbot/unless_renew_cert.erb'
|
|
|
|
|
$ng_index_html_file = '/var/www/html/index.html'
|
|
|
|
|
$ng_index_html_erb = 'confdroid_nagios/httpd/index_html.erb'
|
|
|
|
|
$ng_ssl_vhost_file = '/etc/httpd/conf.d/nagios_ssl.conf'
|
|
|
|
|
$ng_ssl_vhost_erb = 'confdroid_nagios/httpd/nagios_ssl_vhost.erb'
|
|
|
|
|
$ng_grep_erb = 'confdroid_nagios/selinux/grep.erb'
|
|
|
|
|
|
2017-07-20 14:47:24 +01:00
|
|
|
# includes must be last
|
2026-02-02 23:38:50 +01:00
|
|
|
include confdroid_nagios::main::config
|
2017-07-20 14:47:24 +01:00
|
|
|
}
|