2011-04-04 Dario Rodriguez <dario.rodriguez@artica.es>
* pandora_agent_installer: Added correct user to tentacle_client binary. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4166 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
bd6f13faa8
commit
f33f30d9a1
|
@ -1,3 +1,7 @@
|
|||
2011-04-04 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||
|
||||
* pandora_agent_installer: Added correct user to tentacle_client binary.
|
||||
|
||||
2011-04-04 Dario Rodriguez <dario.rodriguez@artica.es>
|
||||
|
||||
* pandora_agent_installer: Modified agent isntaller to deal with
|
||||
|
|
|
@ -321,6 +321,13 @@ install () {
|
|||
echo "Copying tentacle client to $PANDORA_BASE$TENTACLE"
|
||||
cp tentacle_client $PANDORA_BASE$TENTACLE
|
||||
chmod 755 $PANDORA_BASE$TENTACLE
|
||||
if [ "$OS_NAME" = "FreeBSD" ]
|
||||
then
|
||||
chown $PANDORA_USER:wheel $PANDORA_BASE$TENTACLE
|
||||
else
|
||||
chown $PANDORA_USER:root $PANDORA_BASE$TENTACLE
|
||||
fi
|
||||
|
||||
|
||||
echo "Installing the Pandora Agent and Tentacle Client manuals"
|
||||
cp man/man1/tentacle_client.1.gz $PANDORA_BASE/$PANDORA_MAN/man1
|
||||
|
|
Loading…
Reference in New Issue