Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hide-scripts'
Browse files Browse the repository at this point in the history
  • Loading branch information
timf committed Jun 13, 2011
2 parents f49bb43 + 62dcf64 commit 1f9b9e7
Show file tree
Hide file tree
Showing 20 changed files with 25 additions and 26 deletions.
2 changes: 1 addition & 1 deletion cloud-client/README.txt
Expand Up @@ -34,7 +34,7 @@ This will do the following:

6) Set up that directory as GLOBUS_LOCATION for the next step

7) Call the "../bin/clients-only-build-and-install.sh" script in the Nimbus source tree.
7) Call the "../scripts/gt/clients-only-build-and-install.sh" script in the Nimbus source tree.
Since the embedded Globus directory is set up as GLOBUS_LOCATION, it will install the
client libraries there.

Expand Down
2 changes: 1 addition & 1 deletion cloud-client/builder/environment.sh
Expand Up @@ -35,7 +35,7 @@ export GLOBUS_LOCATION="$CLCLBUILDER_DIST_DIRECTORY/lib/globus"

# #########################################################

export NIMBUS_CLIENT_INSTALL_SCRIPT="$CLCLBUILDER_BASEDIR/../scripts/clients-only-build-and-install.sh"
export NIMBUS_CLIENT_INSTALL_SCRIPT="$CLCLBUILDER_BASEDIR/../scripts/gt/clients-only-build-and-install.sh"

# #########################################################

Expand Down
2 changes: 1 addition & 1 deletion docs/src/admin/reference.html
Expand Up @@ -1858,7 +1858,7 @@ <h2>Configuring a standalone context broker _NAMELINK(context-broker)</h2>
<p>
If you want to install the broker separately from Nimbus, download the
Nimbus source tarball, extract it, and run
<i>scripts/broker-build-and-install.sh</i> with an appropriate
<i>scripts/gt/broker-build-and-install.sh</i> with an appropriate
<b>$GLOBUS_LOCATION</b> set.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/dev/cumulus_integration.txt
Expand Up @@ -213,6 +213,6 @@ The variables are:

NOTE: If you move $NIMBUS_HOME, you need to call nimbus-configure again.

If Nimbus is installed via ./scripts/all-build-and-install.sh these
If Nimbus is installed via ./scripts/gt/all-build-and-install.sh these
variables will have to be manually set.

4 changes: 2 additions & 2 deletions docs/src/dev/reference.html
Expand Up @@ -401,7 +401,7 @@ <h2>Changing the WSDL _NAMELINK(change-wsdl)</h2>
</p>

<p>
First run _PATH(bin/all-clean.sh).
First run _PATH(scripts/gt/all-clean.sh).
</p>
<p>
Then edit the "compact" WSDL in the
Expand Down Expand Up @@ -433,7 +433,7 @@ <h2>Changing the WSDL _NAMELINK(change-wsdl)</h2>

<p>
That creates the new wsdl. Now you need to create the auto-generated "stub"
code Java jars. Do this by running "scripts/stubs-build.sh"
code Java jars. Do this by running "scripts/gt/stubs-build.sh"
</p>

<p>
Expand Down
4 changes: 2 additions & 2 deletions install
Expand Up @@ -41,9 +41,9 @@ if [ -d $NIMBUS_HOME ] && [ "$(ls -A $NIMBUS_HOME)" ]; then
echo "The destination directory '$NIMBUS_HOME' exists and is not empty."
echo "It is not recommended to reinstall Nimbus into an existing install."
echo ""
echo "If you are making changes to the services, you can build and install those directly:"
echo "If you are making changes to the service code, you can build and install those directly:"
echo " export GLOBUS_LOCATION=$NIMBUS_HOME/services"
echo " scripts/all-build-and-install.sh"
echo " scripts/jars-build-and-install.sh"
echo ""
echo "If you know what you are doing and want to reinstall, edit this script:"
echo " $0"
Expand Down
2 changes: 1 addition & 1 deletion libexec/create-nimbus-home
Expand Up @@ -134,7 +134,7 @@ echo "-----------------------------------------------------------------"
GLOBUS_LOCATION=$CONTAINER_DIR
export GLOBUS_LOCATION

$NIMBUS_SRC/scripts/all-build-and-install.sh
$NIMBUS_SRC/scripts/gt/all-build-and-install.sh
if [ $? -ne 0 ]; then
echo "Build and install FAILED!"
exit 1
Expand Down
9 changes: 4 additions & 5 deletions scripts/README.txt → scripts/gt/README.txt
@@ -1,9 +1,8 @@
_________________________________________________________________________
Ant build and deploy scripts:
_________________________________________________________________________

These scripts are for building and deploying into an existing Globus
container. Most users will want to use the ./install script.
container. Most users will want to use the ./install script, these
scripts are for developers and also used from certain higher level
scripts.


* all-build-and-install.sh - The main installation script
* clients-only-build-and-install.sh - Main client-only installation script
Expand Down
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build and install all"
NIMBUS_ANT_CMD="deploy-default-GT4.0-service -Dbuild.also=x $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/all-build.sh → scripts/gt/all-build.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build all"
NIMBUS_ANT_CMD="build-default-GT4.0-service $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/all-clean.sh → scripts/gt/all-clean.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="clean all"
NIMBUS_ANT_CMD="clean-all $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/all-install.sh → scripts/gt/all-install.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="install all"
NIMBUS_ANT_CMD="deploy-default-GT4.0-service $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/all-uninstall.sh → scripts/gt/all-uninstall.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="uninstall all"
NIMBUS_ANT_CMD="undeploy-GT4.0-all $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build and install Context Broker"
NIMBUS_ANT_CMD="deploy-broker -Dbuild.also=x $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/broker-build.sh → scripts/gt/broker-build.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build Context Broker"
NIMBUS_ANT_CMD="build-broker $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/broker-install.sh → scripts/gt/broker-install.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="install Context Broker"
NIMBUS_ANT_CMD="deploy-broker $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build and install clients only"
NIMBUS_ANT_CMD="deploy-default-GT4.0-clients-only -Dbuild.also=x $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build clients only"
NIMBUS_ANT_CMD="build-default-GT4.0-clients-only $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="install clients only"
NIMBUS_ANT_CMD="deploy-default-GT4.0-clients-only $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down
2 changes: 1 addition & 1 deletion scripts/stubs-build.sh → scripts/gt/stubs-build.sh
Expand Up @@ -3,7 +3,7 @@
NIMBUS_PRINTNAME="build all"
NIMBUS_ANT_CMD="build-stubs $*"

BASEDIR_REL="`dirname $0`/.."
BASEDIR_REL="`dirname $0`/../.."
BASEDIR=`cd $BASEDIR_REL; pwd`
RUN=$BASEDIR/scripts/lib/gt4.0/build/run.sh

Expand Down

0 comments on commit 1f9b9e7

Please sign in to comment.