public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Kristian Fiskerstrand" <k_f@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/files/
Date: Wed, 20 Dec 2017 22:13:56 +0000 (UTC)	[thread overview]
Message-ID: <1513808027.fc9581d755e96bfd4eef2eb91669559f6d87ea0f.k_f@gentoo> (raw)

commit:     fc9581d755e96bfd4eef2eb91669559f6d87ea0f
Author:     PPed72 <paolo.pedroni <AT> iol <DOT> it>
AuthorDate: Wed Nov  8 11:45:35 2017 +0000
Commit:     Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
CommitDate: Wed Dec 20 22:13:47 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc9581d7

net-p2p/deluge: 'files' folder cleanup

Bug: https://bugs.gentoo.org/636860

 net-p2p/deluge/files/deluge-web.service | 11 -----
 net-p2p/deluge/files/deluged.conf       |  9 -----
 net-p2p/deluge/files/deluged.init       | 71 ---------------------------------
 net-p2p/deluge/files/deluged.service    | 13 ------
 4 files changed, 104 deletions(-)

diff --git a/net-p2p/deluge/files/deluge-web.service b/net-p2p/deluge/files/deluge-web.service
deleted file mode 100644
index 426401a95e0..00000000000
--- a/net-p2p/deluge/files/deluge-web.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Deluge WebUI
-After=deluged.service
-
-[Service]
-User=deluge
-ExecStart=/usr/bin/deluge-web
-
-[Install]
-WantedBy=multi-user.target
-

diff --git a/net-p2p/deluge/files/deluged.conf b/net-p2p/deluge/files/deluged.conf
deleted file mode 100644
index 21b375d5c97..00000000000
--- a/net-p2p/deluge/files/deluged.conf
+++ /dev/null
@@ -1,9 +0,0 @@
-# /etc/conf.d/deluged
-# Change this to the user you want to run deluged as.
-# You may specify a group too, after a colon
-DELUGED_USER=""
-# DELUGED_UMASK="0002"
-# DELUGED_OPTS="-p 58846"
-DELUGEUI_START="false"
-DELUGEUI_OPTS="-u web"
-

diff --git a/net-p2p/deluge/files/deluged.init b/net-p2p/deluge/files/deluged.init
deleted file mode 100644
index 0fd9429fb05..00000000000
--- a/net-p2p/deluge/files/deluged.init
+++ /dev/null
@@ -1,71 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License, v2 or later
-
-depend() {
-	need net
-}
-
-checkconfig() {
-	if [ "${DELUGED_USER}" = "" ] ; then
-		eerror "Please edit /etc/conf.d/deluged"
-		eerror "You have to specify a user to run deluged as, as we will not run it as root!"
-		eerror "Modify DELUGED_USER to your needs (you can also add a group, after a colon)"
-		return 1
-	fi
-	if ! getent passwd "${DELUGED_USER%:*}" >/dev/null ; then
-		eerror "Please edit /etc/conf.d/deluged"
-		eerror "Your user has to exist!"
-		return 1
-	fi
-	if [ "${DELUGED_USER%:*}" = "${DELUGED_USER}" ] ; then
-		return 0
-	else
-		if ! getent group "${DELUGED_USER#*:}" >/dev/null ; then
-			eerror "Please edit /etc/conf.d/deluged"
-			eerror "Your group has to exist too!"
-			return 1
-		fi
-	fi	
-	return 0
-}
-
-start() {
-	checkconfig || return $?
-	if [ "${DELUGED_HOME}" = "" ] ; then
-		DELUGED_USER_HOME=$(getent passwd "${DELUGED_USER%:*}" | cut -d ':' -f 6)
-	else
-		DELUGED_USER_HOME=${DELUGED_HOME}
-	fi
-	ebegin "Starting Deluged"
-	start-stop-daemon --start --user "${DELUGED_USER%:*}" \
-	--name deluged --pidfile /run/deluged.pid --background --make-pidfile \
-	${DELUGED_UMASK:+--umask ${DELUGED_UMASK}} \
-	--exec /usr/bin/deluged -e HOME="${DELUGED_USER_HOME}" -- --do-not-daemonize ${DELUGED_OPTS}
-	eend $?
-
-	
-	if [ "${DELUGEUI_START}" = "true" ] ; then
-		ebegin "Starting Deluge"
-		start-stop-daemon --start --background --pidfile \
-		/run/deluge.pid  --make-pidfile \
-		--exec /usr/bin/deluge --user "${DELUGED_USER%:*}" \
-		-e HOME="${DELUGED_USER_HOME}" -- ${DELUGEUI_OPTS}
-		eend $?
-	fi
-}
-
-stop() {
-	ebegin "Stopping Deluged"
-	start-stop-daemon --stop --user "${DELUGED_USER%:*}" \
-	--name deluged --pidfile /run/deluged.pid
-	eend $?
-
-
-	if [ "${DELUGEUI_START}" = "true" ] ; then
-		ebegin "Stopping Deluge"
-		start-stop-daemon --stop --user "${DELUGED_USER%:*}" \
-		--name deluge --pidfile /run/deluge.pid
-		eend $?
-	fi
-}

diff --git a/net-p2p/deluge/files/deluged.service b/net-p2p/deluge/files/deluged.service
deleted file mode 100644
index 74876b008cc..00000000000
--- a/net-p2p/deluge/files/deluged.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Deluge BitTorrent client
-After=network.target local-fs.target
-Wants=local-fs.target
-
-[Service]
-EnvironmentFile=/etc/conf.d/deluged
-User=deluge
-Group=deluge
-ExecStart=/usr/bin/deluged -d -p $DELUGED_PORT $DELUGED_OPTIONS
-
-[Install]
-WantedBy=multi-user.target


             reply	other threads:[~2017-12-20 22:14 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-20 22:13 Kristian Fiskerstrand [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-06-05 23:03 [gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/files/ Conrad Kostecki
2020-04-30 18:46 Andreas Sturmlechner
2020-04-27 13:48 Mikle Kolyada
2019-10-21 13:25 Craig Andrews
2016-03-10 10:34 Patrice Clement
2016-03-10 10:34 Patrice Clement
2016-03-10 10:34 Patrice Clement
2016-03-04  8:44 Ian Delaney
2016-02-28 20:38 Kristian Fiskerstrand
2016-02-28 20:38 Kristian Fiskerstrand
2016-02-28 20:38 Kristian Fiskerstrand
2016-02-16 18:21 Kristian Fiskerstrand
2016-02-16 18:21 Kristian Fiskerstrand
2016-02-16 18:21 Kristian Fiskerstrand
2016-02-16 18:21 Kristian Fiskerstrand

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1513808027.fc9581d755e96bfd4eef2eb91669559f6d87ea0f.k_f@gentoo \
    --to=k_f@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox