mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
- More adjustments. Done after the big cleanup PR I’ve gone through discovery and polling folders.
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
if (!$os){
|
|
/**
|
|
* Supported Devides List
|
|
* OLT AN5516-06
|
|
* OLT AN5516-01
|
|
*/
|
|
if (preg_match('/^AN5516-0[16]$/',$sysDescr)) {
|
|
$os = "fiberhome";
|
|
}
|
|
}
|