mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 08:02:51 +02:00
11 lines
194 B
PHP
11 lines
194 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
|
|
if (strstr($sysDescr, "Dell Out-of-band SNMP Agent for Remote Access Controller") || strstr($sysObjectId, "1.3.6.1.4.1.674.10892.5")) {
|
|
$os = "drac";
|
|
}
|
|
}
|
|
|
|
?>
|