freebsd-dev/etc/rc.d/lpd
Brooks Davis c1c1542199 Allow chkprintcap(8) to be run before lpd is started. Disabled by
default for now.  Default flags create missing directories.

Remove comment about doing this in etc/rc.d/var.

Unlike in the PR, I chose to do this in the lpd script where we reliably
have /usr available.

PR:		conf/71488
Submitted by:	RZ-FreeBSD0904 at fh-karlsruhe dot de
2005-03-02 02:46:47 +00:00

28 lines
417 B
Bash
Executable File

#!/bin/sh
#
# $NetBSD: lpd,v 1.5 2002/03/22 04:33:59 thorpej Exp $
# $FreeBSD$
#
# PROVIDE: lpd
# REQUIRE: DAEMON
# BEFORE: LOGIN
. /etc/rc.subr
name="lpd"
rcvar=`set_rcvar`
command="/usr/sbin/${name}"
required_files="/etc/printcap"
start_precmd="_chkprintcap"
_chkprintcap()
{
if checkyesno chkprintcap_enable ; then
/usr/sbin/chkprintcap ${chkprintcap_flags}
fi
}
load_rc_config $name
run_rc_command "$1"