Files
librenms/includes/discovery/os/prestige.inc.php
T
2011-03-14 19:16:40 +00:00

9 lines
161 B
PHP

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