51506f39f4
o change rcname to kfd; o move mandatory options to command_args; o add missing "shutdown" keyword; o fix require line. Kfd doesn't really need to be started before daemons. Suggested by: dougb
18 lines
186 B
Bash
Executable File
18 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: kfd
|
|
# REQUIRE: NETWORK
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=kfd
|
|
rcvar=kfd_enable
|
|
load_rc_config $name
|
|
command_args="-i &"
|
|
|
|
run_rc_command "$1"
|