From 0fed0f938cb2dd700170b42ae06b2eef5b868ea0 Mon Sep 17 00:00:00 2001 From: Lord Hepipud Date: Mon, 16 Sep 2019 17:02:13 +0200 Subject: [PATCH] Fixed default value for Verbose argument on Config generation --- lib/core/tools/Get-IcingaCheckCommandConfig.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 index 3b640f9..4c0a485 100644 --- a/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 +++ b/lib/core/tools/Get-IcingaCheckCommandConfig.psm1 @@ -211,7 +211,7 @@ function Get-IcingaCheckCommandConfig() if ($parameter.name -ne 'Verbose') { $Basket.Command[$Data.Name].vars.Add($parameter.Name, '$$null'); } else { - $Basket.Command[$Data.Name].vars.Add($parameter.Name, ""); + $Basket.Command[$Data.Name].vars.Add($parameter.Name, "0"); } }