Files
librenms/includes/osdiscovery/discover-speedtouch.php
T
2010-07-15 23:17:25 +00:00

11 lines
174 B
PHP
Executable File

<?php
if(!$os) {
if(strpos($sysDescr, "TG585v7") !== FALSE) { $os = "speedtouch"; }
else if(strpos($sysDescr, "SpeedTouch 5") !== FALSE) { $os = "speedtouch"; }
}
?>