29 lines
538 B
PHP
29 lines
538 B
PHP
<?php
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage discovery
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
/// YAH, leave this here, need run it as last :(
|
|
|
|
if (!$os) {
|
|
if (str_starts($sysDescr, 'RTCS version')) {
|
|
$os = 'nxp-mqx-rtcs';
|
|
|
|
// Accuenergy Accuvim II
|
|
/* Moved to os discovery definition
|
|
if (!safe_empty(snmp_get_oid($device, '.1.3.6.1.4.1.39604.1.1.1.1.6.20.0'))) {
|
|
$os = 'accuvimii';
|
|
}
|
|
*/
|
|
}
|
|
}
|
|
|
|
// EOF
|