Fixed invalid entry_value key name

This commit is contained in:
Lord Hepipud 2019-09-16 12:02:38 +02:00
parent 10fdea7660
commit 10001cc84d

View file

@ -95,13 +95,13 @@ function Get-IcingaCheckCommandConfig()
'entries' = @(
@{
'entry_name' = '0';
'entry_value:' = "yes";
'entry_value' = "yes";
'format' = 'string';
'allowed_roles' = $NULL;
},
@{
'entry_name' = '1';
'entry_value:' = "no";
'entry_value' = "no";
'format' = 'string';
'allowed_roles' = $NULL;
}
@ -120,25 +120,25 @@ function Get-IcingaCheckCommandConfig()
'entries' = @(
@{
'entry_name' = '0';
'entry_value:' = "Show Default";
'entry_value' = "Show Default";
'format' = 'string';
'allowed_roles' = $NULL;
},
@{
'entry_name' = '1';
'entry_value:' = "Show Operator";
'entry_value' = "Show Operator";
'format' = 'string';
'allowed_roles' = $NULL;
},
@{
'entry_name' = '2';
'entry_value:' = "Show Problems";
'entry_value' = "Show Problems";
'format' = 'string';
'allowed_roles' = $NULL;
},
@{
'entry_name' = '3';
'entry_value:' = "Show All";
'entry_value' = "Show All";
'format' = 'string';
'allowed_roles' = $NULL;
}