librenms-librenms/includes/discovery/os/canonprinter.inc.php

8 lines
173 B
PHP
Raw Normal View History

<?php
if (!$os) {
// Canon Multifunction Printer/Scanner
2016-02-20 11:04:23 +01:00
if (strstr($sysDescr, 'Canon MF') || strstr($sysDescr, 'Canon iR')) {
$os = 'canonprinter';
}
}