mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
17 lines
350 B
PHP
17 lines
350 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
if (strstr($sysDescr, 'APC Web/SNMP Management Card')) {
|
|
$os = 'apc';
|
|
}
|
|
if (strstr($sysDescr, 'APC Switched Rack PDU')) {
|
|
$os = 'apc';
|
|
}
|
|
if (strstr($sysDescr, 'APC MasterSwitch PDU')) {
|
|
$os = 'apc';
|
|
}
|
|
if (strstr($sysDescr, 'APC Metered Rack PDU')) {
|
|
$os = 'apc';
|
|
}
|
|
}
|