c1c1542199
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
28 lines
417 B
Bash
Executable File
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"
|