librenms-librenms/includes/osdiscovery/discover-m0n0wall.php
Adam Amstrong 748316484e Add and update new os discovery functions
git-svn-id: http://www.observium.org/svn/observer/trunk@135 61d68cd4-352d-0410-923a-c4978735b2b8
2008-03-12 11:15:58 +00:00

13 lines
167 B
PHP
Executable File

<?php
if(!$os) {
if(preg_match("/^m0n0wall/", $sysDescr)) { $os = "m0n0wall"; }
}
if(!$os) {
if(preg_match("/^Voswall/", $sysDescr)) { $os = "Voswall"; }
}
?>