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 6d2acd422d
commit 1edcec19a2

View file

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