librenms/includes/discovery/os/vrp.inc.php

8 lines
251 B
PHP
Raw Normal View History

<?php
if (!$os) {
2015-09-19 21:06:12 +00:00
if (stristr($sysDescr, 'VRP (R) Software') || stristr($sysDescr, 'VRP Software Version') || stristr($sysDescr, 'Software Version VRP') || stristr($sysDescr, 'Versatile Routing Platform Software')) {
$os = 'vrp';
}
}