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

12 lines
180 B
PHP

<?php
if (!$os) {
if (stristr($sysDescr, 'Blade Network Technologies')) {
$os = 'bnt';
}
if (preg_match('/^BNT /', $sysDescr)) {
$os = 'bnt';
}
}