Files
librenms-librenms/includes/discovery/os/mgeups.inc.php
kate66 3784f65abb Added MGE Comet detection (#4606)
newdevice: Added MGE detection
2016-09-27 14:49:58 +01:00

10 lines
219 B
PHP

<?php
if (str_contains($sysDescr, array('Pulsar M', 'MGE UPS SYSTEMS - Network Management Proxy'))) {
$os = 'mgeups';
}
if (starts_with($sysDescr, array('Galaxy ', 'Evolution ', 'Comet'))) {
$os = 'mgeups';
}