Add detection of HP V1910 switches

This commit is contained in:
Kevin Fleshman
2015-03-09 10:36:59 -07:00
parent 25508a3d03
commit 0a547f5492
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
if (!$os)
{
if (strstr($sysDescr, "HP V1910-")) { $os = "hp"; }
}
?>