2012-04-18 Ramon Novoa <rnovoa@artica.es>

* pandora_agent: Add the temporal directory to the file path before
	  trying to send a buffered XML file.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6022 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2012-04-18 15:35:39 +00:00
parent d45486d4ed
commit ae37653850
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-04-18 Ramon Novoa <rnovoa@artica.es>
* pandora_agent: Add the temporal directory to the file path before
trying to send a buffered XML file.
2012-03-28 Ramon Novoa <rnovoa@artica.es>
* pandora_agent_installer: Moved the code that sets PANDORA_USER to

View File

@ -707,7 +707,7 @@ sub send_buffered_xml_files () {
# Skip symlink and non data files
next if (-l $xml_file || $xml_file !~ m/\.data$/);
send_file ($xml_file, 1);
send_file ("$Conf{'temporal'}/$xml_file", 1);
}
}