Files
librenms/includes/osdiscovery/discover-dell-laser.php
T
2010-01-28 17:27:02 +00:00

11 lines
168 B
PHP

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