mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
14 lines
261 B
PHP
14 lines
261 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
if (strstr($sysDescr, 'TG585v7')) {
|
|
$os = 'speedtouch';
|
|
}
|
|
else if (strstr($sysDescr, 'SpeedTouch ')) {
|
|
$os = 'speedtouch';
|
|
}
|
|
else if (preg_match('/^ST\d/', $sysDescr)) {
|
|
$os = 'speedtouch';
|
|
}
|
|
}
|