19 lines
286 B
Bash
Executable File
19 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ndbootd,v 1.1 2001/05/22 14:51:37 fredette Exp $
|
|
#
|
|
|
|
# PROVIDE: ndbootd
|
|
# REQUIRE: DAEMON
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ndbootd"
|
|
rcvar=$name
|
|
command="/usr/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
required_files="/etc/ethers"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|