mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
16 lines
381 B
PHP
16 lines
381 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
if (strstr($sysDescr, 'EMC SOHO-NAS Storage.')) {
|
|
$os = 'lenovoemc';
|
|
|
|
$lenovoemc_mibs = array(
|
|
"fanValue" => "IOMEGANAS-MIB",
|
|
"tempValue" => "IOMEGANAS-MIB",
|
|
"raidStatus" => "IOMEGANAS-MIB",
|
|
"diskStatus" => "IOMEGANAS-MIB"
|
|
);
|
|
register_mibs($device, $lenovoemc_mibs, "includes/discovery/os/lenovoemc.inc.php");
|
|
}
|
|
}
|