librenms/includes/discovery/os/xerox.inc.php
2015-07-11 16:12:35 +02:00

11 lines
173 B
PHP

<?php
if (!$os) {
if (strstr($sysDescr, 'Xerox Phaser')) {
$os = 'xerox';
}
if (strstr($sysDescr, 'Xerox WorkCentre')) {
$os = 'xerox';
}
}