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

11 lines
183 B
PHP
Raw Normal View History

<?php
if (!$os) {
2015-07-13 20:10:26 +02:00
if (stristr($sysDescr, 'ProCurve')) {
$os = 'procurve';
}
else if (preg_match('/eCos-[0-9.]+/', $sysDescr)) {
$os = 'procurve';
}
}