Add PanOS and ArubaOS support, patch by vendis / Christer.

git-svn-id: http://www.observium.org/svn/observer/trunk@2806 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Tom Laermans
2012-01-02 15:56:00 +00:00
parent 661480fb4c
commit 607ec8a398
8 changed files with 79 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
if (!$os)
{
if (strstr($sysDescr, "ArubaOS")) { $os = "arubaos"; }
}
?>
+8
View File
@@ -0,0 +1,8 @@
<?php
if (!$os)
{
if (strstr($sysDescr, "Palo Alto Networks")) { $os = "panos"; }
}
?>