mirror of https://github.com/Icinga/icinga2.git
Merge pull request #5332 from sysadmama/patch-1
Notification Scripts: notification_type is always required
This commit is contained in:
commit
612bd0755c
|
@ -100,7 +100,10 @@ object NotificationCommand "mail-service-notification" {
|
||||||
required = true
|
required = true
|
||||||
value = "$notification_servicestate$"
|
value = "$notification_servicestate$"
|
||||||
}
|
}
|
||||||
"-t" = "$notification_type$"
|
"-t" = {
|
||||||
|
required = true
|
||||||
|
value = "$notification_type$"
|
||||||
|
}
|
||||||
"-u" = {
|
"-u" = {
|
||||||
required = true
|
required = true
|
||||||
value = "$notification_servicedisplayname$"
|
value = "$notification_servicedisplayname$"
|
||||||
|
|
Loading…
Reference in New Issue