librenms/includes/osdiscovery/discover-dell-laser.php
Tom Laermans 5f82d33ff8 basic dell laserprinter support
git-svn-id: http://www.observium.org/svn/observer/trunk@736 61d68cd4-352d-0410-923a-c4978735b2b8
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"; }
}
?>