Added tool function to translate Icinga Args in PS Args

This commit is contained in:
Lord Hepipud 2019-08-19 12:14:02 +02:00
parent 8e8d879ff2
commit 89647ede8f

View file

@ -0,0 +1,9 @@
function Split-IcingaCheckCommandArgs()
{
[array]$arguments = @();
foreach ($arg in $args) {
$arguments += $arg;
}
return $arguments;
}