[2132349] Add an additional check to get Foundry OS version

This commit is contained in:
Eric A. Miller
2012-07-08 21:29:56 -04:00
parent 9e84141983
commit 50b4274f68
2 changed files with 4 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ version 2.07 ()
* Get OS version for Juniper devices not reporting in sysDescr
* Correct base MAC reporting for Juniper devices
* Correct reporting of SSID broadcast status in Airespace class
* [2132349] Add an additional check to get Foundry OS version
* [2929883] [3413999] LLDP interface mapping issue
* [3297786] LLDP TimeMark component defaults to zero (David Baldwin)
* [2988163] Detect Juniper SSG firewalls as Layer3::Netscreen (R. Kerr)

View File

@@ -192,6 +192,9 @@ sub os_ver {
}
}
# See if we report from Flash if wouldn't report from running above
return $foundry->snAgFlashImgVer() if ( defined $foundry->snAgFlashImgVer() );
# Last resort
return $foundry->SUPER::os_ver();