#!/bin/sh
#
# ivil_finish
#
# ATonns Thu Aug 30 14:22:24 EDT 2001
#

echo "running ivil_finish..."

echo "NFS mounting additional JumpStart components..."
mkdir -p /tmp/jump
mount -F nfs -o timeo=1200,retrans=32,hard,intr 192.168.189.1:/jump /tmp/jump
if [ ! -d /tmp/jump/etc ]; then
	echo "ERROR: /tmp/jump/etc does not exist, mount failed"
	exit 1;
else
	echo "Directory /tmp/jump mounted via NFS"
fi


echo "Installing 7_Recommended patch cluster..."
/tmp/jump/etc/scripts/patch_finish
echo "7_Recommended patch cluster installed"

echo "Installing iVillage software..."
/tmp/jump/etc/scripts/software_finish
echo "iVillage software installation complete."

echo "Performing iVillage system customization..."
/tmp/jump/etc/scripts/custom_finish
echo "iVillage system customization complete."
