librenms/includes/discovery/os/dell-laser.inc.php

12 lines
240 B
PHP
Raw Normal View History

<?php
if(!$os) {
if(strstr($sysDescr, "Dell Color Laser")) { $os = "dell-laser"; }
elseif(strstr($sysDescr, "Dell Laser Printer")) { $os = "dell-laser"; }
elseif(preg_match("/^Dell.*MFP/", $sysDescr)) { $os = "dell-laser"; }
}
?>