diff --git a/pandora_agents/unix/ChangeLog b/pandora_agents/unix/ChangeLog index 0f9cec35b3..c6e431d667 100644 --- a/pandora_agents/unix/ChangeLog +++ b/pandora_agents/unix/ChangeLog @@ -1,3 +1,8 @@ +2010-07-12 Ramon Novoa + + * pandora_agent: changed the module cron configuration token to + module_crontab. + 2010-07-08 Ramon Novoa * pandora_exec: Do not verify the command to allow pipes and complex diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index ede0c5ad67..09b868bd63 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -298,7 +298,7 @@ sub read_config (;$) { } elsif ($action =~ /^\s*=~\s+(\S*)\s+(.*)$/) { push (@{$module->{'conditions'}}, {'operator' => '=~', 'value_1' => $1, 'command' => $2}); } - } elsif ($line =~ /^\s*module_cron\s+(((\*|(\d+(-\d+){0,1}))\s*){5}).*$/) { + } elsif ($line =~ /^\s*module_crontab\s+(((\*|(\d+(-\d+){0,1}))\s*){5}).*$/) { $module->{'cron'} = $1; } elsif ($line =~ /^\s*module_cron_interval\s+(\d+).*$/) { $module->{'cron_interval'} = $1;