2010-10-22 Junichi Satoh <junichi@rworks.jp>

* lib/PandoraFMS/NetworkServer.pm: Deleted Solaris specific SNMPGET
	definition. It is the same as Linux.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3446 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2010-10-22 05:18:36 +00:00
parent 5db9aba7c6
commit 5abe1cea48
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2010-10-22 Junichi Satoh <junichi@rworks.jp>
* lib/PandoraFMS/NetworkServer.pm: Deleted Solaris specific SNMPGET
definition. It is the same as Linux.
2010-10-22 Junichi Satoh <junichi@rworks.jp>
* lib/PandoraFMS/Tools.pm: Changed ping count to for() loop instead of

View File

@ -269,12 +269,7 @@ sub pandora_snmp_get_command ($$$$$$$$$) {
}
}
# Need to implement
elsif ($OSNAME eq "solaris"){
$output = "";
}
# by default LINUX/FreeBSD calls
# by default LINUX/FreeBSD/Solaris calls
else {
if ($snmp_version ne "3"){
$output = `$snmpget_cmd -v $snmp_version -r $snmp_retries -t $snmp_timeout -OUevqt -c '$snmp_community' $snmp_target $snmp_oid 2>/dev/null`;