mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-10 22:48:12 -04:00
19 lines
302 B
Bash
Executable File
19 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ndbootd,v 1.2 2004/08/13 18:08:03 mycroft Exp $
|
|
#
|
|
|
|
# PROVIDE: ndbootd
|
|
# REQUIRE: DAEMON
|
|
|
|
$_rc_subr_loaded . /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"
|