From: <dme...@us...> - 2014-04-30 03:47:24
|
Revision: 8148 http://sourceforge.net/p/bigdata/code/8148 Author: dmekonnen Date: 2014-04-30 03:47:20 +0000 (Wed, 30 Apr 2014) Log Message: ----------- jetty resource base path correction. "[!" becomes "[ !" in negation statements. Modified Paths: -------------- branches/RDR/src/resources/deployment/nss/bin/startNSS Modified: branches/RDR/src/resources/deployment/nss/bin/startNSS =================================================================== --- branches/RDR/src/resources/deployment/nss/bin/startNSS 2014-04-30 03:41:09 UTC (rev 8147) +++ branches/RDR/src/resources/deployment/nss/bin/startNSS 2014-04-30 03:47:20 UTC (rev 8148) @@ -11,12 +11,12 @@ export LOG_DIR=${BD_HOME}/var/log -if [! -d $LOG_DIR ]; then +if [ ! -d $LOG_DIR ]; then mkdir -p $LOG_DIR fi export DATA_DIR=${BD_HOME}/var/data -if [! -d $DATA_DIR ]; then +if [ ! -d $DATA_DIR ]; then mkdir -p $DATA_DIR fi @@ -33,7 +33,7 @@ export JETTY_XML="${JETTY_DIR}/etc/jetty.xml" fi if [ -z "${JETTY_RESOURCE_BASE}" ]; then - export JETTY_RESOURCE_BASE="${JETTY_DIR}/var/jetty" + export JETTY_RESOURCE_BASE="${JETTY_DIR}" fi @@ -52,7 +52,7 @@ # Setup the directory for the pid of the ServiceStarter process. lockDir=${INSTALL_DIR}/var/lock -if [! -d $lockDir ]; then +if [ ! -d $lockDir ]; then mkdir -p $lockDir fi pidFile=$lockDir/pid This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |