07e39d15a1
Summary: - Add environment variable to suppress update dialog - Update JDK to v17 to satisfy future requirement - Maintainer change - Remove build leftover Changes: https://github.com/theotherp/nzbhydra2/blob/v4.7.4/changelog.md PR: 268430 Approved by: pkubaj (mentor) Differential Revision: https://reviews.freebsd.org/D37782
60 lines
1.7 KiB
Bash
60 lines
1.7 KiB
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: nzbhydra2
|
|
# REQUIRE: LOGIN
|
|
# KEYWORD: shutdown
|
|
#
|
|
# Add the following lines to /etc/rc.conf.local or /etc/rc.conf
|
|
# to enable this service:
|
|
#
|
|
# nzbhydra2_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable it.
|
|
# nzbhydra2_user: The user account nzbhydra daemon runs as what
|
|
# you want it to be. It uses '_sabnzbd' user by
|
|
# default. Do not sets it as empty or it will run
|
|
# as root.
|
|
# nzbhydra2_group: The group account nzbhydra daemon runs as what
|
|
# you want it to be. It uses 'nzbhydra2' group by
|
|
# default. Do not sets it as empty or it will run
|
|
# as wheel.
|
|
# nzbhydra2_dir: Directory where nzbhydra lives.
|
|
# Default: %%PREFIX%%/share/nzbhydra2
|
|
# nzbhydra2_data_dir: Data directory for nzbhydra (DB, Logs, config)
|
|
# Default: %%PREFIX%%/nzbhydra2
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nzbhydra2"
|
|
rcvar=${name}_enable
|
|
|
|
load_rc_config ${name}
|
|
|
|
: ${nzbhydra2_enable:="NO"}
|
|
: ${nzbhydra2_user:="nzbhydra2"}
|
|
: ${nzbhydra2_group:="nzbhydra2"}
|
|
: ${nzbhydra2_dir:="%%PREFIX%%/share/nzbhydra2"}
|
|
: ${nzbhydra2_data_dir:="%%PREFIX%%/nzbhydra2"}
|
|
|
|
pidfile="/var/run/nzbhydra2/nzbhydra2.pid"
|
|
command="%%PYTHON_CMD%%"
|
|
command_args="${nzbhydra2_dir}/nzbhydra2wrapperPy3.py --datafolder ${nzbhydra2_data_dir} --pidfile ${pidfile} --daemon --nobrowser --java %%JAVA%%"
|
|
start_precmd=nzbhydra2_precmd
|
|
|
|
nzbhydra2_precmd()
|
|
{
|
|
export XDG_CONFIG_HOME=${nzbhydra2_data_dir}
|
|
export NZBHYDRA_DISABLE_UPDATE=1
|
|
|
|
if [ -f ${pidfile} ]; then
|
|
rm -f ${pidfile}
|
|
echo "Removing stale pidfile."
|
|
elif [ ! -d ${pidfile%/*} ]; then
|
|
install -d -o ${nzbhydra2_user} -g ${nzbhydra2_group} ${pidfile%/*}
|
|
fi
|
|
|
|
if [ ! -d ${nzbhydra2_data_dir} ]; then
|
|
install -d -o ${nzbhydra2_user} -g ${nzbhydra2_group} ${nzbhydra2_data_dir}
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|