minor changes
This commit is contained in:
parent
90c3bee5e6
commit
dd417ea6b3
|
@ -20,7 +20,7 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Author : $Author: tomas $
|
# Author : $Author: tomas $
|
||||||
# Version : $Revision: 1.9 $
|
# Version : $Revision: 1.10 $
|
||||||
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/Attic/Makefile,v $
|
# Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/storageServer/Attic/Makefile,v $
|
||||||
#
|
#
|
||||||
# @configure_input@
|
# @configure_input@
|
||||||
|
@ -93,7 +93,7 @@ TEST_RUNNER = ${PHP_DIR}/xmlrpc/testRunner.sh
|
||||||
db_init db_clean testonly transtest
|
db_init db_clean testonly transtest
|
||||||
|
|
||||||
all: dir_setup db_init
|
all: dir_setup db_init
|
||||||
# $(MAKE) -C ../archiveServer all
|
$(MAKE) -C ../archiveServer all
|
||||||
|
|
||||||
dir_setup: ${DOXYGEN_DIR}
|
dir_setup: ${DOXYGEN_DIR}
|
||||||
bin/setupDirs.sh ${STOR_DIR} ${ACCESS_DIR} ${TRANS_DIR} ${BUFF_DIR}
|
bin/setupDirs.sh ${STOR_DIR} ${ACCESS_DIR} ${TRANS_DIR} ${BUFF_DIR}
|
||||||
|
@ -110,7 +110,7 @@ docclean:
|
||||||
${RMDIR} ${DOXYGEN_DIR}/html
|
${RMDIR} ${DOXYGEN_DIR}/html
|
||||||
|
|
||||||
depclean: clean
|
depclean: clean
|
||||||
# $(MAKE) -C ../archiveServer clean
|
$(MAKE) -C ../archiveServer clean
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
${TAR_C} ${MODULE_NAME}${DATE}${DIST_EXT} *
|
${TAR_C} ${MODULE_NAME}${DATE}${DIST_EXT} *
|
||||||
|
@ -129,7 +129,8 @@ recheck: clean check
|
||||||
# Specific targets
|
# Specific targets
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
transtest:
|
transtest:
|
||||||
cd var/tests; php -q transTest.php
|
cdvar/tests/transTest.sh
|
||||||
|
# cd var/tests; php -q transTest.php
|
||||||
|
|
||||||
db_init:
|
db_init:
|
||||||
cd var/install; php -q install.php
|
cd var/install; php -q install.php
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: tomas $
|
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 $
|
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);
|
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||||
$gb =& new GreenBox(&$dbc, $config);
|
$gb =& new GreenBox(&$dbc, $config);
|
||||||
$tr =& new Transport(&$dbc, $config);
|
$tr =& new Transport(&$dbc, &$gb, $config);
|
||||||
$pr =& new Prefs(&$gb);
|
$pr =& new Prefs(&$gb);
|
||||||
|
|
||||||
echo "#StorageServer step 2:\n# trying uninstall ...\n";
|
echo "#StorageServer step 2:\n# trying uninstall ...\n";
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
|
|
||||||
|
|
||||||
Author : $Author: tomas $
|
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 $
|
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";
|
echo "#StorageServer uninstall:\n";
|
||||||
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
$dbc->setFetchMode(DB_FETCHMODE_ASSOC);
|
||||||
$gb = &new GreenBox(&$dbc, $config);
|
$gb = &new GreenBox(&$dbc, $config);
|
||||||
$tr =& new Transport(&$dbc, $config);
|
$tr =& new Transport(&$dbc, &$gb, $config);
|
||||||
$pr =& new Prefs(&$gb);
|
$pr =& new Prefs(&$gb);
|
||||||
$dbc->setErrorHandling(PEAR_ERROR_RETURN);
|
$dbc->setErrorHandling(PEAR_ERROR_RETURN);
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Author : $Author: tomas $
|
# 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 $
|
# 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 $URL; fi
|
||||||
if [ $DEBUG_I ]; then echo -n "Press enter ..."; read KEY; fi
|
if [ $DEBUG_I ]; then echo -n "Press enter ..."; read KEY; fi
|
||||||
echo -n "# curl: "
|
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 "status: $?"
|
||||||
echo -n "# downloadRawAudioDataClose: "
|
echo -n "# downloadRawAudioDataClose: "
|
||||||
$XR_CLI downloadRawAudioDataClose $SESSID $TOKEN || exit $?
|
$XR_CLI downloadRawAudioDataClose $SESSID $TOKEN || exit $?
|
||||||
|
|
Loading…
Reference in New Issue