#!/bin/sh
# $Id: continue.sh,v 1.7 1998/09/21 20:22:17 ghudson Exp $

# Continue the installation from the packs

# /tmp/vars inputs 
#	SRVD	path of system packs
#	OS	path of os packs

. /tmp/vars

# Set up a slightly more useful environment
ln -s $SRVD /srvd
ln -s $OS /os
ln -s /os/usr/libexec /usr/libexec # ld.so
ln -s /os/usr/lib /usr/lib         # and shared libraries
ln -s /os/usr/share /usr/share     # and useful files like 'termcap'

echo "Continuing the installation from the system packs."
echo ""
echo "You may remove the floppy disk now."

exec /srvd/install/install
