librenms/includes/discovery/os/avocent.inc.php
Adam Amstrong 8b82c99ca9 fixes and advocent discovery
git-svn-id: http://www.observium.org/svn/observer/trunk@2712 61d68cd4-352d-0410-923a-c4978735b2b8
2011-11-03 12:26:45 +00:00

9 lines
154 B
PHP

<?php
if (!$os)
{
if (preg_match("/^Avocent/", $sysDescr)) { $os = "avocent"; }
if (preg_match("/^AlterPath/", $sysDescr)) { $os = "avocent"; }
}
?>