mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-12 16:06:25 +02:00
14 lines
262 B
PHP
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';
|
|
}
|
|
}
|