minor changes

This commit is contained in:
tomas 2005-01-19 05:24:44 +00:00
parent 90c3bee5e6
commit dd417ea6b3
4 changed files with 11 additions and 10 deletions

View File

@ -20,7 +20,7 @@
#
#
# Author : $Author: tomas $
# Version : $Revision: 1.9 $
# Version : $Revision: 1.10 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/Attic/Makefile,v $
#
# @configure_input@
@ -93,7 +93,7 @@ TEST_RUNNER = ${PHP_DIR}/xmlrpc/testRunner.sh
db_init db_clean testonly transtest
all: dir_setup db_init
# $(MAKE) -C ../archiveServer all
$(MAKE) -C ../archiveServer all
dir_setup: ${DOXYGEN_DIR}
bin/setupDirs.sh ${STOR_DIR} ${ACCESS_DIR} ${TRANS_DIR} ${BUFF_DIR}
@ -110,7 +110,7 @@ docclean:
${RMDIR} ${DOXYGEN_DIR}/html
depclean: clean
# $(MAKE) -C ../archiveServer clean
$(MAKE) -C ../archiveServer clean
dist:
${TAR_C} ${MODULE_NAME}${DATE}${DIST_EXT} *
@ -129,7 +129,8 @@ recheck: clean check
# Specific targets
#-------------------------------------------------------------------------------
transtest:
cd var/tests; php -q transTest.php
cdvar/tests/transTest.sh
# cd var/tests; php -q transTest.php
db_init:
cd var/install; php -q install.php

View File

@ -23,7 +23,7 @@
Author : $Author: tomas $
Version : $Revision: 1.9 $
Version : $Revision: 1.10 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/install.php,v $
------------------------------------------------------------------------------*/
@ -60,7 +60,7 @@ if(PEAR::isError($dbc)){
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
$gb =& new GreenBox(&$dbc, $config);
$tr =& new Transport(&$dbc, $config);
$tr =& new Transport(&$dbc, &$gb, $config);
$pr =& new Prefs(&$gb);
echo "#StorageServer step 2:\n# trying uninstall ...\n";

View File

@ -23,7 +23,7 @@
Author : $Author: tomas $
Version : $Revision: 1.7 $
Version : $Revision: 1.8 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/install/uninstall.php,v $
------------------------------------------------------------------------------*/
@ -57,7 +57,7 @@ if(PEAR::isError($dbc)){
echo "#StorageServer uninstall:\n";
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
$gb = &new GreenBox(&$dbc, $config);
$tr =& new Transport(&$dbc, $config);
$tr =& new Transport(&$dbc, &$gb, $config);
$pr =& new Prefs(&$gb);
$dbc->setErrorHandling(PEAR_ERROR_RETURN);

View File

@ -23,7 +23,7 @@
#
#
# Author : $Author: tomas $
# Version : $Revision: 1.16 $
# Version : $Revision: 1.17 $
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/var/xmlrpc/testRunner.sh,v $
#-------------------------------------------------------------------------------
@ -113,7 +113,7 @@ downloadRAD() {
if [ $DEBUG_I ]; then echo $URL; fi
if [ $DEBUG_I ]; then echo -n "Press enter ..."; read KEY; fi
echo -n "# curl: "
curl -Ifs $URL > /dev/null || { ERN=$?; echo $RES; exit $ERN; }
curl -Ifs $URL > /dev/null || { ERN=$?; echo $URL; exit $ERN; }
echo "status: $?"
echo -n "# downloadRawAudioDataClose: "
$XR_CLI downloadRawAudioDataClose $SESSID $TOKEN || exit $?