librenms/includes/discovery/os/ricoh.inc.php

12 lines
180 B
PHP
Raw Normal View History

<?php
if (!$os) {
if (strstr($sysDescr, 'RICOH Aficio')) {
$os = 'ricoh';
}
if (stristr($sysDescr, 'RICOH Network Printer')) {
$os = 'ricoh';
}
}