You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-nntp/nzbget/files/nzbget.initd-r1

29 lines
742 B

#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
description="A command-line based binary newsgrabber supporting .nzb files"
pidfile=/run/nzbget/nzbget.pid
command=/usr/bin/nzbget
command_args="--configfile \"${NZBGET_CONFIGFILE}\" \
--daemon --option LockFile=${pidfile} \
${NZBGET_OPTS}"
start_stop_daemon_args="--user \"${NZBGET_USER}\" \
--group \"${NZBGET_GROUP}\""
depend() {
need localmount net
}
start_pre() {
checkpath -d -m 0755 -o "${NZBGET_USER}":"${NZBGET_GROUP}" /run/nzbget
}
reload() {
ebegin "Reloading ${RC_SVCNAME}"
${command} --configfile "${NZBGET_CONFIGFILE}" --reload >/dev/null
eend $?
}