OP#436 add eventhandler setting

This commit is contained in:
2026-02-14 16:01:20 +01:00
parent 0871fbe893
commit 8fde715230

View File

@@ -35,6 +35,11 @@
# global host event handler will be configured. You can specify a command like # global host event handler will be configured. You can specify a command like
# 'notify-host-by-email' to set a global host event handler that sends # 'notify-host-by-email' to set a global host event handler that sends
# email notifications for host events, for example. # email notifications for host events, for example.
# @param [String] ng_glob_svc_evt_handler The global service event handler to be
# used in the Nagios configuration. Default is an empty string, which means no
# global service event handler will be configured. You can specify a command like
# 'notify-service-by-email' to set a global service event handler that sends
# email notifications for service events, for example.
############################################################################### ###############################################################################
class confdroid_nagios::params ( class confdroid_nagios::params (
@@ -56,6 +61,7 @@ class confdroid_nagios::params (
# nagios_cfg settings # nagios_cfg settings
String $ng_event_broker_module = '', String $ng_event_broker_module = '',
String $ng_glob_host_evt_handler = '', String $ng_glob_host_evt_handler = '',
String $ng_glob_svc_evt_handler = '',
# httpd # httpd
Boolean $ng_use_https = false, Boolean $ng_use_https = false,