From cadf8632b9365dbbfb333a6c60e15eaef179dae2 Mon Sep 17 00:00:00 2001 From: slerena Date: Tue, 17 Nov 2009 18:16:10 +0000 Subject: [PATCH] 2009-11-18 Sancho Lerena * pandora_agent: Fixed a problem sending the module type in the XML. This causes that all modules were "generic_data". git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2112 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_agents/unix/ChangeLog | 5 +++++ pandora_agents/unix/pandora_agent | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pandora_agents/unix/ChangeLog b/pandora_agents/unix/ChangeLog index 145039f6df..1edc1312af 100644 --- a/pandora_agents/unix/ChangeLog +++ b/pandora_agents/unix/ChangeLog @@ -1,3 +1,8 @@ +2009-11-18 Sancho Lerena + + * pandora_agent: Fixed a problem sending the module type in the XML. + This causes that all modules were "generic_data". + 2009-11-16 Sancho Lerena * pandora_agent: Updated default encoding to iso-8859-1 instead diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 08da65556b..cc0c053e26 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -34,7 +34,7 @@ my $ConfFile = 'pandora_agent.conf'; my %Conf = ( 'server_ip' => 'localhost', 'server_path' => '/var/spool/pandora/data_in', - 'temporal' => '/var/spool/pandora/data_out', + 'temporal' => '/var/spool/pandora', 'log_file' => '/var/log/pandora/pandora_agent.log', 'interval' => 300, 'debug' => 0, @@ -549,8 +549,9 @@ while (1) { $xml .= " \n" . " {'name'}]]>\n" . - " {'description'}]]>\n"; - + " {'description'}]]>\n" . + " $module->{'type'}\n"; + # Data list if ($#data > 0) { $xml .= " \n";