icinga-powershell-framework/lib/plugins/Invoke-IcingaCheckBiosSerial.psm1

9 lines
285 B
PowerShell
Raw Normal View History

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