mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00: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"; }
|
|
|
|
}
|
|
|
|
?>
|