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

14 lines
262 B
PHP

<?php
if (!$os) {
if (strstr($sysDescr, 'Apple AirPort')) {
$os = 'airport';
}
if (strstr($sysDescr, 'Apple Base Station')) {
$os = 'airport';
}
if (strstr($sysDescr, 'Base Station V3.84')) {
$os = 'airport';
}
}