icinga-powershell-framework/lib/config/Test-IcingaPowerShellConfigItem.psm1
2019-10-05 21:56:23 +02:00

9 lines
194 B
PowerShell

function Test-IcingaPowerShellConfigItem()
{
param(
$ConfigObject,
$ConfigKey
);
return ([bool]($ConfigObject.PSobject.Properties.Name -eq $ConfigKey) -eq $TRUE);
}