Merge pull request #1419 from Rosiak/master

Add basic Dell iDrac recognition
This commit is contained in:
Neil Lathwood
2015-07-09 03:29:13 +01:00
+6 -4
View File
@@ -1,8 +1,10 @@
<?php
if (!$os)
{
if (strstr($sysDescr, "Dell Out-of-band SNMP Agent for Remote Access Controller")) { $os = "drac"; }
if (!$os) {
if (strstr($sysDescr, "Dell Out-of-band SNMP Agent for Remote Access Controller") || strstr($sysObjectId, "1.3.6.1.4.1.674.10892.5")) {
$os = "drac";
}
}
?>
?>