summaryrefslogtreecommitdiff
path: root/net-p2p/rtorrent/files
diff options
context:
space:
mode:
Diffstat (limited to 'net-p2p/rtorrent/files')
-rw-r--r--net-p2p/rtorrent/files/rtorrentd.init35
-rw-r--r--net-p2p/rtorrent/files/rtorrentd_at.service15
2 files changed, 0 insertions, 50 deletions
diff --git a/net-p2p/rtorrent/files/rtorrentd.init b/net-p2p/rtorrent/files/rtorrentd.init
deleted file mode 100644
index 83943cd56611..000000000000
--- a/net-p2p/rtorrent/files/rtorrentd.init
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- use net ypbind nis
- after slapd mysqld postgresql
-}
-
-start() {
- PWHOME="$(getent passwd $USER | awk -F: '{ print $6 }')"
-
- ebegin "Starting rtorrent"
- env TERM="xterm" \
- start-stop-daemon \
- --start \
- --make-pidfile \
- --pidfile /var/run/rtorrentd.pid \
- --background \
- --user $USER \
- --env HOME="${PWHOME:-/home/$USER}" \
- --name rtorrent \
- --exec /usr/bin/screen -- -D -m -S rtorrentd /usr/bin/rtorrent
- eend $?
-}
-
-stop() {
- ebegin "Stopping rtorrent"
- # Because we've daemonized with screen, we need to replace the PID file with the real PID of rtorrent
- pgrep -P $(cat /var/run/rtorrentd.pid) > /var/run/rtorrentd.pid
-
- start-stop-daemon --stop --signal 15 \
- --pidfile /var/run/rtorrentd.pid
- eend $?
-}
diff --git a/net-p2p/rtorrent/files/rtorrentd_at.service b/net-p2p/rtorrent/files/rtorrentd_at.service
deleted file mode 100644
index 991ba930c7f8..000000000000
--- a/net-p2p/rtorrent/files/rtorrentd_at.service
+++ /dev/null
@@ -1,15 +0,0 @@
-[Unit]
-Description=rTorrent
-Requires=network.target local-fs.target
-
-[Service]
-Type=forking
-RemainAfterExit=yes
-KillMode=none
-User=%I
-ExecStart=/usr/bin/screen -d -m -S rtorrentd /usr/bin/rtorrent
-ExecStop=/usr/bin/screen -S rtorrentd -X quit
-WorkingDirectory=/home/%I/
-
-[Install]
-WantedBy=multi-user.target