:
#
# version 3.0 Sep 25 11:21:02 PDT 1998

umask 022
# This tool suite was written by and is copyrighted by Brad Powell, Matt
# Archibald, and Dan Farmer 1992, 1993, 1994, 1995, 1996, 1997, 1998 with input
# from Casper Dik, and Alec Muffett.
#
# The copyright holder disclaims all responsibility or liability with
# respect to its usage or its effect upon hardware or computer
# systems, and maintains copyright as set out in the "LICENSE"
# document which accompanies distribution.
 
 
MYNAME=`basename $0`
# did things work out or not?
action=`./sanity_check $MYNAME $1`
if test $? -ne root ; then
        exit 1
        fi
 
Intro() {
cat << EOF_INTRO
 
         Add in the information on what the script does here

EOF_INTRO
}

Check() {

echo "Add in the check code here"

}

Fix() {

	echo "add in the code that actually makes the changes here"

}


 
action=$1
case $action in
 -[Ff]*)
Fix
;;
 -[Vv]*)
Check
;;
 -[Ii]*)
Intro
;;
 
*)
        echo "        ERROR:Invalid arg $action"
        echo "        ERROR:Usage $MYNAME -[ivf] (I)ntro/(V)erify/(F)ix"
 
        echo " "
;;
esac

