Skip to content

Commit 168e690

Browse files
committed
chore(icinga-director): Path to notification plugins changed back to /usr/lib64/nagios/plugins
1 parent 16e76c5 commit 168e690

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

notification-plugins/notify-host-mail/icingaweb2-module-director/notify-host-mail.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"set_if": "$notify_host_mail_short$"
6464
}
6565
},
66-
"command": "/usr/lib64/nagios/plugins/notifications/notify-host-mail",
66+
"command": "/usr/lib64/nagios/plugins/notify-host-mail",
6767
"disabled": false,
6868
"fields": [
6969
{

notification-plugins/notify-host-rocketchat/icingaweb2-module-director/notify-host-rocketchat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"value": "$notify_host_rocketchat_rocketchat_url$"
3535
}
3636
},
37-
"command": "/usr/lib64/nagios/plugins/notifications/notify-host-rocketchat",
37+
"command": "/usr/lib64/nagios/plugins/notify-host-rocketchat",
3838
"disabled": false,
3939
"fields": [
4040
{

notification-plugins/notify-host-zoom/icingaweb2-module-director/notify-host-zoom.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"value": "$notify_host_zoom_url$"
3434
}
3535
},
36-
"command": "/usr/lib64/nagios/plugins/notifications/notify-host-zoom",
36+
"command": "/usr/lib64/nagios/plugins/notify-host-zoom",
3737
"disabled": false,
3838
"fields": [
3939
{

notification-plugins/notify-service-mail/icingaweb2-module-director/notify-service-mail.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"value": "$notify_service_mail_servicename$"
7070
}
7171
},
72-
"command": "/usr/lib64/nagios/plugins/notifications/notify-service-mail",
72+
"command": "/usr/lib64/nagios/plugins/notify-service-mail",
7373
"disabled": false,
7474
"fields": [
7575
{

notification-plugins/notify-service-rocketchat/icingaweb2-module-director/notify-service-rocketchat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"value": "$notify_service_rocketchat_servicename$"
3838
}
3939
},
40-
"command": "/usr/lib64/nagios/plugins/notifications/notify-service-rocketchat",
40+
"command": "/usr/lib64/nagios/plugins/notify-service-rocketchat",
4141
"disabled": false,
4242
"fields": [
4343
{

notification-plugins/notify-service-zoom/icingaweb2-module-director/notify-service-zoom.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"value": "$notify_service_zoom_url$"
4040
}
4141
},
42-
"command": "/usr/lib64/nagios/plugins/notifications/notify-service-zoom",
42+
"command": "/usr/lib64/nagios/plugins/notify-service-zoom",
4343
"disabled": false,
4444
"fields": [
4545
{

tools/check2basket

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ except ImportError:
2424
colorama = False
2525

2626
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
27-
__version__ = '2025030901'
27+
__version__ = '2025061901'
2828

2929
DESCRIPTION = 'A tool to generate Icinga Director baskets from a check plugin.'
3030

@@ -828,7 +828,7 @@ def generate_basket(plugin_file, config=None, old_data=None):
828828
print('Generating "notification-plugin" variant.')
829829
command_object_name = 'cmd-notification-{}'.format(check_name)
830830
notification_object_name = 'tpl-notification-{}'.format(check_name)
831-
command = '/usr/lib64/nagios/plugins/notifications/{}'.format(check_name)
831+
command = '/usr/lib64/nagios/plugins/{}'.format(check_name)
832832
varname_suffix = ''
833833

834834
data = get_command_template(

0 commit comments

Comments
 (0)