icinga-powershell-framework/lib/plugins/Invoke-IcingaCheckBiosSerial.psm1
2019-07-23 09:18:02 +02:00

8 lines
283 B
PowerShell

Import-IcingaLib provider\bios;
function Invoke-IcingaCheckBiosSerial()
{
$Bios = Get-IcingaBiosSerialNumber;
$BiosCheck = New-IcingaCheck -Name $Bios.Name -Value $Bios.Value -NoPerfData;
exit (New-IcingaCheckresult -Check $BiosCheck -NoPerfData $TRUE -Compile);
}