mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
d7765f7ab9
git-svn-id: http://www.observium.org/svn/observer/trunk@3192 61d68cd4-352d-0410-923a-c4978735b2b8
11 lines
309 B
PHP
11 lines
309 B
PHP
<?php
|
|
|
|
if (!$os)
|
|
{
|
|
if (strstr($sysDescr, "APC Web/SNMP Management Card")) { $os = "apc"; }
|
|
elseif (strstr($sysDescr, "APC Switched Rack PDU")) { $os = "apc"; }
|
|
elseif (strstr($sysDescr, "APC MasterSwitch PDU")) { $os = "apc"; }
|
|
elseif (strstr($sysDescr, "APC Metered Rack PDU")) { $os = "apc"; }
|
|
}
|
|
|
|
?>
|