librenms/includes/discovery/os/vrp.inc.php
2015-07-11 16:12:35 +02:00

16 lines
360 B
PHP

<?php
if (!$os) {
if (stristr($sysDescr, 'VRP (R) Software')) {
$os = 'vrp';
}
if (stristr($sysDescr, 'VRP Software Version')) {
$os = 'vrp';
}
if (stristr($sysDescr, 'Software Version VRP')) {
$os = 'vrp';
} if (stristr($sysDescr, 'Versatile Routing Platform Software Version')) {
$os = 'vrp';
}
}