mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* newdevice: Added support for Eaton 5P units #3508 * Small fix * Keep OSDiscoveryTest.php alphebetized
8 lines
116 B
PHP
8 lines
116 B
PHP
<?php
|
|
if (!$os) {
|
|
// Eaton UPS
|
|
if (str_contains($sysDescr, 'Eaton 5P')) {
|
|
$os = 'eatonups';
|
|
}
|
|
}
|