Files
librenms/includes/discovery/os/prestige.inc.php
T

11 lines
181 B
PHP

<?php
if (!$os) {
if (preg_match('/^Prestige \d/', $sysDescr)) {
$os = 'prestige';
}
if (preg_match('/^P-.*-/', $sysDescr)) {
$os = 'prestige';
}
}