librenms/includes/discovery/os/fiberhome.inc.php
Rosiak bceb6e1dfa Adjust code to Best Practice
- More adjustments. Done after the big cleanup PR
I’ve gone through discovery and polling folders.
2015-07-15 13:11:40 +02:00

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";
}
}