mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
14 lines
267 B
PHP
14 lines
267 B
PHP
<?php
|
|
|
|
if (str_contains($sysDescr, array('ProCurve', 'HP 1820'))) {
|
|
$os = 'procurve';
|
|
}
|
|
|
|
if (str_contains($sysDescr, 'HP') && str_contains($sysDescr, array('2530', '54'))) {
|
|
$os = 'procurve';
|
|
}
|
|
|
|
if (str_contains($sysDescr, 'eCos-')) {
|
|
$os = 'procurve';
|
|
}
|