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 0D31659CA3 for ; Sun, 14 Feb 2016 15:59:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8940321C002; Sun, 14 Feb 2016 15:59:10 +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 38CF921C002 for ; Sun, 14 Feb 2016 15:59:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 227EF3408EE for ; Sun, 14 Feb 2016 15:59:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE8CB150 for ; Sun, 14 Feb 2016 15:59:06 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1455465535.084c8f167746a1a4865a9a9392ee4d1000c0d3e0.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/nzbget/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-nntp/nzbget/files/nzbget.initd X-VCS-Directories: net-nntp/nzbget/files/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 084c8f167746a1a4865a9a9392ee4d1000c0d3e0 X-VCS-Branch: master Date: Sun, 14 Feb 2016 15:59:06 +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: 52f974b0-fffd-4d9c-8d7e-2cd0b23c50cc X-Archives-Hash: 261dbe0017e4490dab6947e993ad26f5 commit: 084c8f167746a1a4865a9a9392ee4d1000c0d3e0 Author: Sven Wegener gentoo org> AuthorDate: Sun Feb 14 15:57:28 2016 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sun Feb 14 15:58:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=084c8f16 net-nntp/nzbget: Remove double -- from init script Package-Manager: portage-2.2.26 net-nntp/nzbget/files/nzbget.initd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net-nntp/nzbget/files/nzbget.initd b/net-nntp/nzbget/files/nzbget.initd index e3cd15e..0ed9805 100644 --- a/net-nntp/nzbget/files/nzbget.initd +++ b/net-nntp/nzbget/files/nzbget.initd @@ -11,7 +11,7 @@ start() { start-stop-daemon --quiet --start --user "${NZBGET_USER}" \ --group "${NZBGET_GROUP}" --exec /usr/bin/nzbget -- \ --configfile "${NZBGET_CONFIGFILE}" --daemon \ - -- ${NZBGET_OPTS} + ${NZBGET_OPTS} eend $? } @@ -19,7 +19,7 @@ stop() { ebegin "Stopping ${RC_SVCNAME}" start-stop-daemon --stop --exec /usr/bin/nzbget -- \ --configfile "${NZBGET_CONFIGFILE}" --daemon \ - -- ${NZBGET_OPTS} + ${NZBGET_OPTS} } reload() {