home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Copyright (c) 199-1995 NeXT Computer, Inc.
- # All Rights Reserved
- #
-
- WOFDIR=`pwd`
- WOFSERVERTARZ=WebServer.TAR.Z
-
- clear
- echo "Would you like to install the HTTP Server? [yn]\c"
- read answer
-
- case $answer in
- y | Y | YES | yes | Yes)
- if [ ! -f ${WOFDIR}/${WOFSERVERTARZ} ]; then
- echo "I was unable to find the WebObjects Server release."
- echo "Please \`cd' to the installation directory and try again."
- echo ""
- exit 1
- fi
- echo "Begining installation of HTTP Server ..."
- (cd / ; $WOFDIR/gnutar --uncompress -x -v -f ${WOFDIR}/${WOFSERVERTARZ} )
- echo ""
- echo ""
- echo "HTTP Server has been installed."
- ;;
- *)
- echo ""
- echo "No Server installation performed."
- echo ""
- ;;
- esac
-
- exit 0
-
-