mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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
8 lines
111 B
PHP
8 lines
111 B
PHP
<?php
|
|
if (!$os) {
|
|
// Eaton UPS
|
|
if (strstr($sysDescr, 'Eaton 5PX')) {
|
|
$os = 'eatonups';
|
|
}
|
|
}
|