2007-07-05 Manuel Arostegui <marostegui@artica.es>
* linux/pandora_agent: Fixed small but important bug. which makes the ftp transfer mode useless. * aix/pandora_agent: Fixed small but important bug. which makes the ftp transfer mode useless. * solaris/pandora_agent: Fixed small but important bug. which makes the ftp transfer mode useless. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@556 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
8e2da0848b
commit
236dd4cb90
|
@ -1,3 +1,14 @@
|
||||||
|
2007-07-05 Manuel Arostegui <marostegui@artica.es>
|
||||||
|
|
||||||
|
* linux/pandora_agent: Fixed small but important bug.
|
||||||
|
which makes the ftp transfer mode useless.
|
||||||
|
|
||||||
|
* aix/pandora_agent: Fixed small but important bug.
|
||||||
|
which makes the ftp transfer mode useless.
|
||||||
|
|
||||||
|
* solaris/pandora_agent: Fixed small but important bug.
|
||||||
|
which makes the ftp transfer mode useless.
|
||||||
|
|
||||||
2007-07-03 Manuel Arostegui <marostegui@artica.es>
|
2007-07-03 Manuel Arostegui <marostegui@artica.es>
|
||||||
|
|
||||||
* hp-ux/pandora_agent_installer: Added to repository.
|
* hp-ux/pandora_agent_installer: Added to repository.
|
||||||
|
|
|
@ -303,7 +303,7 @@ do
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" = "ftp" ]
|
if [ "$TRANSFER_MODE" = "ftp" ]
|
||||||
then
|
then
|
||||||
ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
ftp $SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" = "local" ]
|
if [ "$TRANSFER_MODE" = "local" ]
|
||||||
|
|
|
@ -357,7 +357,7 @@ do
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" == "ftp" ]
|
if [ "$TRANSFER_MODE" == "ftp" ]
|
||||||
then
|
then
|
||||||
ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
ftp $SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" == "local" ]
|
if [ "$TRANSFER_MODE" == "local" ]
|
||||||
|
|
|
@ -324,7 +324,7 @@ do
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" = "ftp" ]
|
if [ "$TRANSFER_MODE" = "ftp" ]
|
||||||
then
|
then
|
||||||
ftp SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
ftp $SERVER_IP > /dev/null 2> $PANDORA_LOGFILE.err
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$TRANSFER_MODE" = "local" ]
|
if [ "$TRANSFER_MODE" = "local" ]
|
||||||
|
|
Loading…
Reference in New Issue