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 7B8421381E0 for ; Tue, 16 Feb 2016 18:21:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1767021C01F; Tue, 16 Feb 2016 18:21:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DA8521C005 for ; Tue, 16 Feb 2016 18:21:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98C00340B50 for ; Tue, 16 Feb 2016 18:21:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45B7B154D for ; Tue, 16 Feb 2016 18:21:05 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1455645069.f5049e856eb8a5811df3e7bcb6daf43875a88511.k_f@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/deluged.init X-VCS-Directories: net-p2p/deluge/files/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: f5049e856eb8a5811df3e7bcb6daf43875a88511 X-VCS-Branch: master Date: Tue, 16 Feb 2016 18:21:05 +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: c4031b8b-9b73-435c-b769-793df0189f62 X-Archives-Hash: 81cf875f69e81e355d310547b7f146f2 commit: f5049e856eb8a5811df3e7bcb6daf43875a88511 Author: Paolo Pedroni iol it> AuthorDate: Fri Feb 12 10:23:25 2016 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Tue Feb 16 17:51:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5049e85 net-p2p/deluge: unquote ${DELUGED_OPTS} in openrc init file Fixes bug #437350. Thanks to Alex Belykh ngs.ru> net-p2p/deluge/files/deluged.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-p2p/deluge/files/deluged.init b/net-p2p/deluge/files/deluged.init index 24f0a12..49138e0 100644 --- a/net-p2p/deluge/files/deluged.init +++ b/net-p2p/deluge/files/deluged.init @@ -42,7 +42,7 @@ start() { start-stop-daemon --start --user "${DELUGED_USER%:*}" \ --name deluged --pidfile /var/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}" + --exec /usr/bin/deluged -e HOME="${DELUGED_USER_HOME}" -- --do-not-daemonize ${DELUGED_OPTS} eend $?