2011-08-22 Ramon Novoa <rnovoa@artica.es>

* lib/PandoraFMS/Config.pm: Read the configuration option snmp_threads.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4799 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2011-08-22 10:13:34 +00:00
parent 8ab93450ef
commit 62a1d8817f
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2011-08-22 Ramon Novoa <rnovoa@artica.es>
* lib/PandoraFMS/Config.pm: Read the configuration option snmp_threads.
2011-08-22 Sancho Lerena <slerena@artica.es>
* pandora_server.spec: Update of spec to be used in Opensuse Build

View File

@ -608,6 +608,9 @@ sub pandora_load_config {
elsif ($parametro =~ m/^event_window\s([0-9]*)/i) {
$pa_config->{'event_window'}= clean_blank($1);
}
elsif ($parametro =~ m/^snmp_threads\s([0-9]*)/i) {
$pa_config->{'snmp_threads'}= clean_blank($1);
}
elsif ($parametro =~ m/^block_size\s([0-9]*)/i) {
$pa_config->{'block_size'}= clean_blank($1);
}