2012-02-23 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Set the intensive interval before reading modules. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5636 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
288767b1ba
commit
ef2366fabb
|
@ -1,3 +1,7 @@
|
|||
2012-02-23 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* pandora_agent: Set the intensive interval before reading modules.
|
||||
|
||||
2012-02-10 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||
|
||||
* pandora_agent: Allow filename wildcards to specify
|
||||
|
|
|
@ -585,6 +585,11 @@ sub read_config (;$) {
|
|||
# Single value token not found.
|
||||
return undef;
|
||||
}
|
||||
|
||||
# Set the intensive interval
|
||||
if ($Conf{'intensive_interval'} == 0) {
|
||||
$Conf{'intensive_interval'} = $Conf{'interval'};
|
||||
}
|
||||
|
||||
# Module, plugin and collection definitions
|
||||
parse_conf_modules(\@file);
|
||||
|
@ -608,11 +613,6 @@ sub read_config (;$) {
|
|||
$Conf{'secondary_server_opts'} = '-x \'' . $Conf{'secondary_server_pwd'} . '\' ' . $Conf{'secondary_server_opts'} if ($Conf{'secondary_server_pwd'} ne '');
|
||||
$Conf{'secondary_server_opts'} = '-c ' . $Conf{'secondary_server_opts'} if ($Conf{'secondary_server_ssl'} eq 'yes');
|
||||
}
|
||||
|
||||
# Set the intensive interval
|
||||
if ($Conf{'intensive_interval'} == 0) {
|
||||
$Conf{'intensive_interval'} = $Conf{'interval'};
|
||||
}
|
||||
}
|
||||
|
||||
#################################################################################
|
||||
|
|
Loading…
Reference in New Issue