File: bootstrap

package info (click to toggle)
globus-common 11.5-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,352 kB
  • ctags: 4,592
  • sloc: ansic: 35,631; sh: 10,368; makefile: 590; perl: 408
file content (17 lines) | stat: -rwxr-xr-x 519 bytes parent folder | download | duplicates (44)
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 "ERROR Please specify GLOBUS_LOCATION" >&2
    exit 1
fi

if [ ! -f ${GLOBUS_LOCATION}/libexec/globus-bootstrap.sh ]; then
    echo "ERROR: Unable to locate \${GLOBUS_LOCATION}/libexec/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}/libexec/globus-bootstrap.sh