1#
2# -- START --
3# preremove.generic.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.generic.sh
8if [ "$VERBOSE_INSTALL" != "" ] ; then set -x; fi
9echo "Stopping LPD"
10kill -INT `ps ${PSHOWALL} | awk '/lpd/{ print $1;}'` >/dev/null 2>&1
11exit 0
12