xref: /dragonfly/etc/rc.d/rarpd (revision 2cd2d2b5)
1#!/bin/sh
2#
3# $NetBSD: rarpd,v 1.5 2002/03/22 04:33:59 thorpej Exp $
4# $FreeBSD: src/etc/rc.d/rarpd,v 1.2 2002/06/13 22:14:36 gordon Exp $
5# $DragonFly: src/etc/rc.d/rarpd,v 1.2 2004/01/27 00:42:45 rob Exp $
6#
7
8# PROVIDE: rarpd
9# REQUIRE: DAEMON
10# BEFORE:  LOGIN
11# KEYWORD: DragonFly
12
13. /etc/rc.subr
14
15name="rarpd"
16rcvar=`set_rcvar`
17command="/usr/sbin/${name}"
18pidfile="/var/run/${name}.pid"
19required_files="/etc/ethers"
20
21load_rc_config $name
22run_rc_command "$1"
23