]> andersk Git - gssapi-openssh.git/blob - nmi/testscript
when building from GPT branch, make a GPT package and test it with
[gssapi-openssh.git] / nmi / testscript
1 #!/bin/sh
2 set -e # exit on any error
3 if test "$NMI_PLATFORM" = "ia64_sles_9"; then
4   GT_INSTALLER=gt4.0.3-all-source-installer.tar.gz
5   GT_INSTALLER_URL=http://www.globus.org/ftppub/gt4/4.0/4.0.3/installers/src/$GT_INSTALLER
6 else
7   GT_INSTALLER=gt4.0.3-$NMI_PLATFORM-installer.tar.gz
8   GT_INSTALLER_URL=http://www.globus.org/ftppub/gt4/4.0/4.0.3/installers/bin/$GT_INSTALLER
9 fi
10 GLOBUS_LOCATION=$_CONDOR_SCRATCH_DIR/globus
11 ZLIB_LOCATION=$_CONDOR_SCRATCH_DIR/zlib
12 LOGNAME=$USER
13 X509_CERT_DIR=$GLOBUS_LOCATION/share/certificates
14 export GLOBUS_LOCATION LOGNAME X509_CERT_DIR
15 (
16 echo ==================================================
17 echo Environment variables:
18 env
19 echo ==================================================
20 echo Directory contents:
21 ls -Rl
22 echo ==================================================
23 echo PATHs:
24 echo `which wget`
25 echo `which curl`
26 echo `which ncftpget`
27 echo `which ftp`
28 echo ==================================================
29 echo Installing Globus Toolkit...
30 if test -x `which wget`; then
31   wget $GT_INSTALLER_URL
32 else
33   curl $GT_INSTALLER_URL > $GT_INSTALLER
34 fi
35 tar xfz $GT_INSTALLER
36 cd gt*-installer
37 ./configure --prefix=$GLOBUS_LOCATION --with-buildopts="-verbose"
38 make gsi-openssh install
39 . $GLOBUS_LOCATION/etc/globus-user-env.sh
40 cd ..
41 echo ==================================================
42 echo Building zlib-1.2.3...
43 cd zlib-1.2.3
44 ./configure --prefix=$ZLIB_LOCATION
45 make
46 make install
47 cd ..
48 echo ==================================================
49 GLOBUS_FLAVOR_NAME=`gpt-query -name=gsi_openssh | perl -n -e 'if (/gsi_openssh-(.*)-pgm/){print "$1\n";}'|head -1`
50 export GLOBUS_FLAVOR_NAME
51 echo GPT GLOBUS_FLAVOR_NAME is $GLOBUS_FLAVOR_NAME.  Installing globus_core.
52 gpt-build -nosrc $GLOBUS_FLAVOR_NAME
53 if test -f gsi_openssh_bundle-*.tar.gz; then
54   echo ==================================================
55   echo Building GSI-OpenSSH GPT bundle...
56   gpt-build -force -verbose gsi_openssh_bundle-*.tar.gz $GLOBUS_FLAVOR_NAME \
57     GSI_OPENSSH_GPTMACRO="--with-zlib=$ZLIB_LOCATION"
58 fi
59 if test -d openssh; then
60   echo ==================================================
61   echo Installing autotools...
62   cd autotools
63   ./install-autotools $GLOBUS_LOCATION
64   cd ..
65   echo ==================================================
66   cd openssh
67   if test -f make_gpt_dist; then
68     echo Building GSI-OpenSSH GPT package from CVS...
69     ./make_gpt_dist
70     gpt-build -force -verbose gsi_openssh_bundle-*.tar.gz $GLOBUS_FLAVOR_NAME \
71       GSI_OPENSSH_GPTMACRO="--with-zlib=$ZLIB_LOCATION"
72   else
73     echo Building GSI-OpenSSH from CVS trunk...
74     autoreconf
75     ./configure --prefix=$GLOBUS_LOCATION \
76       --with-globus-flavor=$GLOBUS_FLAVOR_NAME \
77       --with-zlib=$ZLIB_LOCATION \
78       --with-privsep-user=$USER --with-privsep-path=$GLOBUS_LOCATION/var/empty
79     make install
80   fi
81 fi
82 ) 2>&1 # we want stdout & stderr mixed in the output file
This page took 0.09776 seconds and 5 git commands to generate.