From eb2235d914984bff74c625de4fa4887d4f86f971 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 2 Oct 2022 19:13:18 +0100 Subject: gentoo auto-resync : 02:10:2022 - 19:13:17 --- net-p2p/rtorrent/files/rtorrentd.init | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 net-p2p/rtorrent/files/rtorrentd.init (limited to 'net-p2p/rtorrent/files/rtorrentd.init') 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 $? -} -- cgit v1.2.3