mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 10:10:31 -04:00
25 lines
388 B
Bash
25 lines
388 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: oak
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
oak_enable="${oak_enable-NO}"
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="oak"
|
|
rcvar=oak_enable
|
|
command="%%PREFIX%%/bin/oak"
|
|
|
|
load_rc_config $name
|
|
|
|
: ${oak_config="%%PREFIX%%/etc/oak.conf"}
|
|
: ${oak_flags="-c ${oak_config}"}
|
|
: ${oak_user="nobody"}
|
|
|
|
required_files="${oak_config}"
|
|
|
|
run_rc_command "$1"
|