9dd342fee6
in keeping the scripts under rc.d in sync with us. So, remove NetBSD specific stuff (which made our scripts more complicated than necessary). The NetBSD ident string will be left intact, both for history and also incase we wish to pull in future versions.
21 lines
298 B
Bash
Executable File
21 lines
298 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
|
|
# KEYWORD: FreeBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="lpd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
required_files="/etc/printcap"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|