Files
librenms-librenms/includes/discovery/os/avocent.inc.php

9 lines
154 B
PHP
Raw Normal View History

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