File: bootstrap

package info (click to toggle)
globus-xioperf 3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,276 kB
  • sloc: sh: 9,729; ansic: 1,458; makefile: 170
file content (17 lines) | stat: -rwxr-xr-x 547 bytes parent folder | download | duplicates (46)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! /bin/sh

# checking for the GLOBUS_LOCATION

if test "x$GLOBUS_LOCATION" = "x"; then
    echo "Using default GLOBUS_LOCATION of /usr"
    GLOBUS_LOCATION="/usr"
fi

if [ ! -f ${GLOBUS_LOCATION}/share/globus/globus-bootstrap.sh ]; then
    echo "ERROR: Unable to locate \${GLOBUS_LOCATION}/share/globus/globus-bootstrap.sh"
    echo "       Please ensure that you have installed the globus-core package and"
    echo "       that GLOBUS_LOCATION is set to the proper directory"
    exit
fi

. ${GLOBUS_LOCATION}/share/globus/globus-bootstrap.sh