mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Fixed default value for Verbose argument on Config generation
This commit is contained in:
parent
9c2a65a9ad
commit
0fed0f938c
1 changed files with 1 additions and 1 deletions
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue