From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BADAB59CA3 for ; Thu, 10 Mar 2016 10:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80E7C21C0E9; Thu, 10 Mar 2016 10:34:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 880BF21C0DA for ; Thu, 10 Mar 2016 10:34:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98012340CD8 for ; Thu, 10 Mar 2016 10:34:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 21E5D209C for ; Thu, 10 Mar 2016 10:34:26 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1457605092.3e1a129743e430017e58b5a24f9df6fefaef3e39.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/deluge/files/deluge-web.service-2 net-p2p/deluge/files/deluged.service-2 X-VCS-Directories: net-p2p/deluge/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 3e1a129743e430017e58b5a24f9df6fefaef3e39 X-VCS-Branch: master Date: Thu, 10 Mar 2016 10:34:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7c969404-1660-4071-8cde-8be5e9adb507 X-Archives-Hash: a97511c519131f7bc9e8a71664d5016f commit: 3e1a129743e430017e58b5a24f9df6fefaef3e39 Author: PPed72 iol it> AuthorDate: Wed Mar 9 10:21:00 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Mar 10 10:18:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e1a1297 net-p2p/deluge: Improved systemd units No more sourcing of /etc/conf.d/deluge* (QA violation). Systemd units are now configured in drop-in files. Signed-off-by: Patrice Clement gentoo.org> net-p2p/deluge/files/deluge-web.service-2 | 11 +++++++++++ net-p2p/deluge/files/deluged.service-2 | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/net-p2p/deluge/files/deluge-web.service-2 b/net-p2p/deluge/files/deluge-web.service-2 new file mode 100644 index 0000000..adb3830 --- /dev/null +++ b/net-p2p/deluge/files/deluge-web.service-2 @@ -0,0 +1,11 @@ +[Unit] +Description=Deluge WebUI +Documentation=man:deluge-web +After=deluged.service + +[Service] +ExecStart=/usr/bin/deluge-web -c ${DELUGED_HOME} ${DELUGED_OPTS} + +[Install] +WantedBy=multi-user.target + diff --git a/net-p2p/deluge/files/deluged.service-2 b/net-p2p/deluge/files/deluged.service-2 new file mode 100644 index 0000000..049cd02 --- /dev/null +++ b/net-p2p/deluge/files/deluged.service-2 @@ -0,0 +1,11 @@ +[Unit] +Description=Deluge BitTorrent client +Documentation=man:deluged +After=network.target local-fs.target +Wants=local-fs.target + +[Service] +ExecStart=/usr/bin/deluged -d -c ${DELUGED_HOME} ${DELUGED_OPTS} + +[Install] +WantedBy=multi-user.target