librenms-librenms/includes/osdiscovery/discover-sonicwall.php
Tom Laermans 1dfc30ad27 sonicwall detection
git-svn-id: http://www.observium.org/svn/observer/trunk@1385 61d68cd4-352d-0410-923a-c4978735b2b8
2010-07-17 17:44:16 +00:00

9 lines
87 B
PHP

<?php
if (!$os)
{
if (strstr($sysDescr, "SonicWALL")) { $os = "sonicwall"; }
}
?>