Fixed missing argument of check object for InitCheck

This commit is contained in:
Lord Hepipud 2019-08-19 18:07:51 +02:00
parent 8f836fce18
commit 6616324589

View file

@ -35,6 +35,8 @@ function New-IcingaCheckPackage()
}
$Check | Add-Member -membertype ScriptMethod -name 'InitCheck' -value {
param($check);
if ($null -eq $check) {
return;
}