forked from Lainports/freebsd-ports
37 lines
913 B
Bash
37 lines
913 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: bareos_sd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# bareos_sd_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable bareos_sd.
|
|
# bareos_sd_flags (params): Set params used to start bareos_sd.
|
|
# bareos_sd_config (params): Path to the config file/directory
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="bareos_sd"
|
|
rcvar=${name}_enable
|
|
|
|
load_rc_config $name
|
|
|
|
: ${bareos_sd_enable="NO"}
|
|
: ${bareos_sd_flags="-u bareos -g bareos -v"}
|
|
: ${bareos_sd_config="%%PREFIX%%/etc/bareos/"}
|
|
: ${bareos_sd_pidfile="/var/run/bareos/bareos-sd.9103.pid"}
|
|
|
|
command=%%PREFIX%%/sbin/bareos-sd
|
|
command_args="-c ${bareos_sd_config}"
|
|
pidfile="${bareos_sd_pidfile}"
|
|
start_precmd="bareos_start_precmd"
|
|
|
|
bareos_start_precmd() {
|
|
[ -d "${pidfile%/*}" ] || install -d -o bareos -g bareos ${pidfile%/*}
|
|
}
|
|
|
|
run_rc_command "$1"
|