mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02: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';
|
|
}
|
|
}
|