GeorgesDick 61a5a46e94 New file eatonups.inc.php for Eaton UPS discovery
I added this file in my local LibreNMS installation to discover my Eaton 5PX UPS. An other file is also needed :
librenms/includes/discovery/sensors/current/eatonups.inc.php
2016-02-23 10:50:18 +01:00

8 lines
111 B
PHP

<?php
if (!$os) {
// Eaton UPS
if (strstr($sysDescr, 'Eaton 5PX')) {
$os = 'eatonups';
}
}