librenms/includes/discovery/os/sentry3.inc.php
Filippo Giunchedi fe1be15286 sentry3: add Sentry Smart CDU detection
The polled SNMP OIDs are the same as Switched CDU, thus match both.
2015-05-08 14:05:34 +02:00

9 lines
107 B
PHP

<?php
if (!$os)
{
if (preg_match("/^Sentry\ (Switched|Smart) /", $sysDescr)) { $os = "sentry3"; }
}
?>