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