From 655fc8b3e6ffe837a79c0a34078b23b6ab4bd83c Mon Sep 17 00:00:00 2001 From: Jenkins Server Date: Sat, 7 Mar 2026 17:01:26 +0100 Subject: [PATCH] Recommit for updates in build 162 --- .../confdroid_nagios_3A_3Aparams.html | 392 ++++++++++++++++-- 1 file changed, 356 insertions(+), 36 deletions(-) diff --git a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html index 9dbe819..88cc509 100644 --- a/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html +++ b/doc/puppet_classes/confdroid_nagios_3A_3Aparams.html @@ -3600,7 +3600,295 @@ inherited by all classes except defines. —
-

The image to use for the status map in Nagios.

+

The image to use for the status map in Nagios. Choose a suitable value or leave empty to use the default image.

+
+ + + +
  • + + ng_use_sound + + + (Boolean) + + + (defaults to: false) + + + — +
    +

    Whether to use sound in the Nagios web interface. Default is false.

    +
    + +
  • + +
  • + + ng_host_unreachable + + + (String) + + + (defaults to: 'hostdown.wav') + + + — +
    +

    The sound file to play when a host is unreachable. Default is ‘hostdown.wav’.

    +
    + +
  • + +
  • + + ng_host_down + + + (String) + + + (defaults to: 'hostdown.wav') + + + — +
    +

    The sound file to play when a host is down. Default is ‘hostdown.wav’.

    +
    + +
  • + +
  • + + ng_svc_critical + + + (String) + + + (defaults to: 'critical.wav') + + + — +
    +

    The sound file to play when a service is critical. Default is ‘critical.wav’.

    +
    + +
  • + +
  • + + ng_svc_warn + + + (String) + + + (defaults to: 'warning.wav') + + + — +
    +

    The sound file to play when a service is warning. Default is ‘warning.wav’.

    +
    + +
  • + +
  • + + ng_svc_unknown + + + (String) + + + (defaults to: 'warning.wav') + + + — +
    +

    The sound file to play when a service is unknown. Default is ‘warning.wav’.

    +
    + +
  • + +
  • + + ng_normal_sound + + + (String) + + + (defaults to: 'noproblem.wav') + + + — +
    +

    The sound file to play when a host or service returns to normal. Default is ‘noproblem.wav’.

    +
    + +
  • + +
  • + + ng_action_url_target + + + (String) + + + (defaults to: '_blank') + + + — +
    +

    The target for action URLs in the Nagios web interface. Default is ‘_blank’.

    +
    + +
  • + +
  • + + ng_notes_url_target + + + (String) + + + (defaults to: '_blank') + + + — +
    +

    The target for notes URLs in the Nagios web interface. Default is ‘_blank’.

    +
    + +
  • + +
  • + + ng_lock_author_names + + + (String) + + + (defaults to: '1') + + + — +
    +

    Whether to lock author names in the Nagios web interface. Default is ‘1’.

    +
    + +
  • + +
  • + + ng_enable_splunk + + + (Boolean) + + + (defaults to: false) + + + — +
    +

    Whether to enable Splunk integration in Nagios. Default is false.

    +
    + +
  • + +
  • + + ng_splunk_url + + + (String) + + + (defaults to: 'https://splunk.example.net:8000') + + + — +
    +

    The URL for the Splunk instance in Nagios. Default is ‘splunk.example.net:8000’.

    +
    + +
  • + +
  • + + ng_navbar_addresses + + + (String) + + + (defaults to: '1') + + + — +
    +

    Whether to enable navbar search for addresses in Nagios. Default is ‘1’.

    +
    + +
  • + +
  • + + ng_navbar_aliases + + + (String) + + + (defaults to: '1') + + + — +
    +

    Whether to enable navbar search for aliases in Nagios. Default is ‘1’.

    +
    + +
  • + +
  • + + ng_ack_no_sticky + + + (String) + + + (defaults to: '0') + + + — +
    +

    Whether to allow non-sticky acknowledgements in Nagios. Default is ‘1’.

    +
    + +
  • + +
  • + + ng_ack_no_send + + + (String) + + + (defaults to: '0') + + + — +
    +

    Whether to allow non-send acknowledgements in Nagios. Default is ‘1’.

  • @@ -3629,39 +3917,6 @@ inherited by all classes except defines.
     
     
    -392
    -393
    -394
    -395
    -396
    -397
    -398
    -399
    -400
    -401
    -402
    -403
    -404
    -405
    -406
    -407
    -408
    -409
    -410
    -411
    -412
    -413
    -414
    -415
    -416
    -417
    -418
    -419
    -420
    -421
    -422
    -423
    -424
     425
     426
     427
    @@ -3955,10 +4210,59 @@ inherited by all classes except defines.
     715
     716
     717
    -718
    +718 +719 +720 +721 +722 +723 +724 +725 +726 +727 +728 +729 +730 +731 +732 +733 +734 +735 +736 +737 +738 +739 +740 +741 +742 +743 +744 +745 +746 +747 +748 +749 +750 +751 +752 +753 +754 +755 +756 +757 +758 +759 +760 +761 +762 +763 +764 +765 +766 +767 -
    # File 'manifests/params.pp', line 392
    +        
    # File 'manifests/params.pp', line 425
     
     class confdroid_nagios::params (
     
    @@ -4142,6 +4446,22 @@ class confdroid_nagios::params (
       String $ng_enable_page_tour        = '1',
       String $ng_result_limit            = '100',
       String $ng_escape_html_tags        = '1',
    +  Boolean $ng_use_sound              = false,
    +  String $ng_host_unreachable        = 'hostdown.wav',
    +  String $ng_host_down               = 'hostdown.wav',
    +  String $ng_svc_critical            = 'critical.wav',
    +  String $ng_svc_warn                = 'warning.wav',
    +  String $ng_svc_unknown             = 'warning.wav',
    +  String $ng_normal_sound            = 'noproblem.wav',
    +  String $ng_action_url_target       = '_blank',
    +  String $ng_notes_url_target        = '_blank',
    +  String $ng_lock_author_names       = '1',
    +  Boolean $ng_enable_splunk          = false,
    +  String $ng_splunk_url              = 'https://splunk.example.net:8000',
    +  String $ng_navbar_addresses        = '1',
    +  String $ng_navbar_aliases          = '1',
    +  String $ng_ack_no_sticky           = '0',
    +  String $ng_ack_no_send             = '0',
     
     # httpd
       Boolean $ng_use_https               = false,