27bc1b287e
while. This is only the script pieces, the glue for the build comes next. Submitted by: Mike Makonnen <makonnen@pacbell.net> Reviewed by: silence on -current and -hackers Prodded by: rwatson
22 lines
340 B
Bash
Executable File
22 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: rarpd,v 1.5 2002/03/22 04:33:59 thorpej Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: rarpd
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: FreeBSD NetBSD
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="rarpd"
|
|
rcvar=`set_rcvar`
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/ethers"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|