2010-11-22 Ramon Novoa <rnovoa@artica.es>

* Linux/pandora_agent.conf: Set root as the default pandora_user.

	* pandora_agent: Share the semaphore after creating it. Removed
	  an unnecessary require.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3613 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2010-11-22 15:07:40 +00:00
parent 0c7fa1a7a5
commit 001f757791
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2010-11-22 Ramon Novoa <rnovoa@artica.es>
* Linux/pandora_agent.conf: Set root as the default pandora_user.
* pandora_agent: Share the semaphore after creating it. Removed
an unnecessary require.
2010-11-19 Ramon Novoa <rnovoa@artica.es>
* pandora_agent, AIX/pandora_agent.conf,

View File

@ -101,7 +101,7 @@ transfer_mode tentacle
#agent_threads 1
# User the agent will run as
pandora_user ramon
#pandora_user root
# Secondary server configuration
# ==============================

View File

@ -48,12 +48,11 @@ eval {
require threads;
require threads::shared;
require Thread::Semaphore;
require IO::Socket;
};
if (!$@) {
$Sem = Thread::Semaphore->new;
threads::shared::share (\$Xml);
threads::shared::share (\$Sem);
$Sem = Thread::Semaphore->new;
}
use constant AGENT_VERSION => '3.2RC1';