mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-17 08:03:36 +02:00
12 lines
262 B
PHP
12 lines
262 B
PHP
<?php
|
|
|
|
if(!$os) {
|
|
|
|
if(strpos($sysDescr, "Apple AirPort") !== FALSE) { $os = "airport"; }
|
|
else if(strpos($sysDescr, "Apple Base Station") !== FALSE) { $os = "airport"; }
|
|
else if(strpos($sysDescr, "Base Station V3.84") !== FALSE) { $os = "airport"; }
|
|
|
|
}
|
|
|
|
?>
|