mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
Added basic detection for EqualLogic units
This commit is contained in:
@@ -660,6 +660,12 @@ $os = "powervault";
|
||||
$config['os'][$os]['text'] = "Dell PowerVault";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
|
||||
$os = "equallogic";
|
||||
$config['os'][$os]['text'] = "Dell EqualLogic";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
$config['os'][$os]['over'][0]['graph'] = "device_bits";
|
||||
$config['os'][$os]['over'][0]['text'] = "Device Traffic";
|
||||
|
||||
$os = "drac";
|
||||
$config['os'][$os]['text'] = "Dell DRAC";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
if (!$os) {
|
||||
if (strstr($sysObjectId, ".1.3.6.1.4.1.12740.17.1")) { $os = "equallogic"; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user