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

12 lines
175 B
PHP
Raw Normal View History

<?php
2015-07-13 18:10:26 +00:00
if (!$os) {
if (strstr($sysObjectId, '.1.3.6.1.4.1.1916.2')) {
$os = 'extremeware';
}
2015-07-13 18:10:26 +00:00
if (strstr($sysDescr, 'XOS')) {
$os = 'xos';
}
}