2010-07-02 Ramon Novoa <rnovoa@artica.es>

* pandora_agent: Fixed a typo.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2955 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Ramon Novoa 2010-07-02 14:21:05 +00:00
parent b4c97408a9
commit a7b62691b3
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2010-07-02 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Fixed a typo.
2010-06-30 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Improved the module cron to allow intervals and

View File

@ -235,7 +235,7 @@ sub read_config (;$) {
'min' => 0,
'postprocess' => 0,
'save' => '',
'actions' => [],
'conditions' => [],
'cron' => '',
'cron_utimestamp' => 0,
'cron_interval' => -1
@ -767,7 +767,7 @@ sub module_exec ($) {
# Something went wrong or no data
return () unless ($? eq 0 && defined ($data[0]));
# Evaluate module actions
# Evaluate module conditions
evaluate_module_conditions ($module, $data[0]);
return @data;