Linux lpd daemon
The lpd startup script
#!/bin/sh
#
# lpd This shell script takes care of starting and stopping
# lpd (printer daemon).
#
# chkconfig: 2345 60 60
# description: lpd is the print daemon required for lpr to work properly. \
# It is basically a server that arbitrates print jobs to printer(s).
# processname: lpd
# config: /etc/printcap
# Source function library.
. /etc/rc.d/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ ${NETWORKING} = "no" ] && exit 0
[ -f /usr/sbin/lpd ] || exit 0
[ -f /etc/printcap ] || exit 0
RETVAL=0
# See how we were called.
case "$1" in
start)
# Start daemons.
echo -n "Starting lpd: "
daemon lpd
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/lpd
;;
stop)
# Stop daemons.
echo -n "Shutting down lpd: "
killproc lpd
RETVAL=$?
echo
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/lpd
;;
status)
status lpd
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
*)
echo "Usage: lpd {start|stop|restart|reload|status}"
exit 1
esac
exit $RETVAL
|