1#
2# -- START --
3# preremove.freebsd.sh,v 1.1 2001/08/21 20:33:17 root Exp
4#
5# This is the shell script that does the preremove
6# lpd shutdown.  It is the script from hell
7echo RUNNING preremove.freebsd.sh parms "'$0 $@'"
8if [ "$VERBOSE_INSTALL" != "" ] ; then set -x; fi
9if [ "X$2" = "XDEINSTALL" ] ; then
10	echo "Stopping LPD"
11	killall -INT lpd
12fi
13exit 0
14