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-p2p/transmission/files/transmission-daemon.initd.10

51 lines
1.7 KiB

#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
command="/usr/bin/transmission-daemon"
extra_started_commands="reload"
description="Transmission is a fast, easy and free bittorrent client"
description_start="Start transmission-daemon server and web interface"
description_stop="Stop transmission-daemon server and web interface"
description_reload="Reload transmission-daemon settings"
rundir=${rundir:-/var/run/transmission}
pidfile=${pidfile:-${rundir}/transmission.pid}
config_dir=${config_dir:-/var/lib/transmission/config}
download_dir=${download_dir:-/var/lib/transmission/downloads}
logfile=${logfile:-/var/log/transmission/transmission.log}
runas_user=${runas_user:-transmission:transmission}
retry="TERM/45/QUIT/15"
start_pre() {
command_args="--config-dir ${config_dir} --pid-file ${pidfile}"
command_user="${runas_user}"
# Call mkdir -p in case parent dirs are missing
mkdir -p "${rundir}" "${config_dir}" "${download_dir}"
# Call checkpath to fixup permissions
checkpath -d -o "${runas_user}" "${rundir}" "${config_dir}" "${download_dir}" || return
if [ ! -e "${config_dir}/settings.json" ]; then
# Only set download dir if settings don't exist
# https://bugs.gentoo.org/576640
command_args="${command_args} --download-dir ${download_dir}"
fi
if [ "${logfile}" != syslog ]; then
checkpath -d -o "${runas_user}" /var/log/transmission || return
command_args="${command_args} --logfile ${logfile}"
fi
command_args="${command_args} ${TRANSMISSION_OPTIONS}"
}
reload() {
ebegin "Reloading ${RC_SVCNAME}"
start-stop-daemon --signal HUP --exec "${command}" --pidfile "${pidfile}"
eend $?
}