#!/bin/sh
##############################################################################
# $Id: install_recommended_patches,v 1.1 2002/03/21 19:07:45 root Exp $
##############################################################################
# Install recommended patch cluster for this version of Solaris
##############################################################################
# $Log: install_recommended_patches,v $
# Revision 1.1  2002/03/21 19:07:45  root
# Initial revision
#
##############################################################################

echo
echo "Start of $0"
echo '  $Id: install_recommended_patches,v 1.1 2002/03/21 19:07:45 root Exp $'

BASE=/a

echo "  Installing patch init script, patches will install after reboot"

cp $SI_CONFIG_DIR/finish/files/patches.init $BASE/etc/init.d/patches
chmod 744 $BASE/etc/init.d/patches
# S98 is just before dtlogin
ln -s ../init.d/patches $BASE/etc/rc2.d/S98patches

echo "End of $0"

