initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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 $?
}