Files
librenms-librenms/includes/discovery/os/eatonups.inc.php
Neil Lathwood f76f0f7b96 newdevice: Added support for Eaton 5P units #3508 (#4376)
* newdevice: Added support for Eaton 5P units #3508

* Small fix

* Keep OSDiscoveryTest.php alphebetized
2016-09-09 11:57:05 -05:00

8 lines
116 B
PHP

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