From 865c94fc6cd6b348d04779564c202cad5ea6f9c9 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Mon, 16 Sep 2019 12:02:38 +0200 Subject: [PATCH] Fixed invalid entry_value key name --- lib/core/tools/Get-IcingaCheckCommandConfig.psm1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 index 6ddf2d7..1918a27 100644 --- a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 +++ b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 @@ -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; }