mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-10 02:21:15 +02:00
24 lines
390 B
Bash
24 lines
390 B
Bash
#!/bin/sh
|
|
#
|
|
# PROVIDE: staticd
|
|
# REQUIRE: zebra
|
|
# KEYWORD: shutdown
|
|
#
|
|
. /etc/rc.subr
|
|
|
|
name="staticd"
|
|
rcvar="staticd_enable"
|
|
command="%%PREFIX%%/sbin/${name}"
|
|
pidfile="%%RUN_DIR%%/${name}.pid"
|
|
procname="${command}"
|
|
required_dirs="%%RUN_DIR%% %%LOG_DIR%%"
|
|
required_files="%%CONF_DIR%%/${name}.conf"
|
|
command_args=" -d"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${staticd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|
|
#EOF
|