mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Fixed invalid entry_value key name
This commit is contained in:
parent
10fdea7660
commit
10001cc84d
1 changed files with 6 additions and 6 deletions
|
|
@ -95,13 +95,13 @@ function Get-IcingaCheckCommandConfig()
|
||||||
'entries' = @(
|
'entries' = @(
|
||||||
@{
|
@{
|
||||||
'entry_name' = '0';
|
'entry_name' = '0';
|
||||||
'entry_value:' = "yes";
|
'entry_value' = "yes";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
},
|
},
|
||||||
@{
|
@{
|
||||||
'entry_name' = '1';
|
'entry_name' = '1';
|
||||||
'entry_value:' = "no";
|
'entry_value' = "no";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
}
|
}
|
||||||
|
|
@ -120,25 +120,25 @@ function Get-IcingaCheckCommandConfig()
|
||||||
'entries' = @(
|
'entries' = @(
|
||||||
@{
|
@{
|
||||||
'entry_name' = '0';
|
'entry_name' = '0';
|
||||||
'entry_value:' = "Show Default";
|
'entry_value' = "Show Default";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
},
|
},
|
||||||
@{
|
@{
|
||||||
'entry_name' = '1';
|
'entry_name' = '1';
|
||||||
'entry_value:' = "Show Operator";
|
'entry_value' = "Show Operator";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
},
|
},
|
||||||
@{
|
@{
|
||||||
'entry_name' = '2';
|
'entry_name' = '2';
|
||||||
'entry_value:' = "Show Problems";
|
'entry_value' = "Show Problems";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
},
|
},
|
||||||
@{
|
@{
|
||||||
'entry_name' = '3';
|
'entry_name' = '3';
|
||||||
'entry_value:' = "Show All";
|
'entry_value' = "Show All";
|
||||||
'format' = 'string';
|
'format' = 'string';
|
||||||
'allowed_roles' = $NULL;
|
'allowed_roles' = $NULL;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue