mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 17:00:58 -05:00
18 lines
237 B
Bash
Executable file
18 lines
237 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# $NetBSD$
|
|
#
|
|
|
|
# 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"
|