Merge pull request #4119 from crcro/hp2530

hp 2530 series procurve/aruba detection
This commit is contained in:
Neil Lathwood 2016-08-20 01:09:08 +01:00 committed by GitHub
commit d7f6f0b428

View File

@ -6,5 +6,8 @@ if (!$os) {
}
else if (preg_match('/eCos-[0-9.]+/', $sysDescr)) {
$os = 'procurve';
} elseif (preg_match('/HP(.+)2530(.+)/', $sysDescr)) {
//hp aruba 2530 series
$os = 'procurve';
}
}