librenms/includes/discovery/os/huaweiups.inc.php
2015-07-15 11:04:22 +02:00

10 lines
219 B
PHP

<?php
if (!$os) {
if (preg_match('/^Linux GSE200M/', $sysDescr)) {
if (strstr(snmp_get($device, 'UPS-MIB::upsIdentManufacturer.0', '-Oqv', ''), 'HUAWEI')) {
$os = 'huaweiups';
}
}
}