From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 521C5139085 for ; Sat, 14 Jan 2017 19:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AAFF23403B; Sat, 14 Jan 2017 19:13:59 +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 44014234039 for ; Sat, 14 Jan 2017 19:13:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 3CE8D3411D7 for ; Sat, 14 Jan 2017 19:13:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3BDE270F for ; Sat, 14 Jan 2017 19:13:56 +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: <1484421231.ded639753190a409a10b2038b8f3b1f9e7a1d79d.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdns-recursor/files/pdns-recursor X-VCS-Directories: net-dns/pdns-recursor/files/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: ded639753190a409a10b2038b8f3b1f9e7a1d79d X-VCS-Branch: master Date: Sat, 14 Jan 2017 19:13:56 +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: bf3cd02f-8b14-47d9-9a67-ff8ffd84fabb X-Archives-Hash: 4dafec2b408b79e0970baffa3360f3cc commit: ded639753190a409a10b2038b8f3b1f9e7a1d79d Author: Sven Wegener gentoo org> AuthorDate: Sat Jan 14 19:11:32 2017 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sat Jan 14 19:13:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ded63975 net-dns/pdns-recursor: Replace bashisms in init script, bug #605694 Package-Manager: Portage-2.3.0, Repoman-2.3.1 net-dns/pdns-recursor/files/pdns-recursor | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net-dns/pdns-recursor/files/pdns-recursor b/net-dns/pdns-recursor/files/pdns-recursor index f114d5b..8300b70 100644 --- a/net-dns/pdns-recursor/files/pdns-recursor +++ b/net-dns/pdns-recursor/files/pdns-recursor @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -11,18 +11,18 @@ depend() { start() { ebegin "Starting PowerDNS Recursor" - /usr/sbin/pdns_recursor --daemon=yes &>/dev/null + /usr/sbin/pdns_recursor --daemon=yes >/dev/null 2>&1 eend $? } stop() { ebegin "Stopping PowerDNS Recursor" - /usr/bin/rec_control quit &>/dev/null + /usr/bin/rec_control quit >/dev/null 2>&1 eend $? } ping() { ebegin "Pinging PowerDNS Recursor" - /usr/bin/rec_control ping &>/dev/null + /usr/bin/rec_control ping >/dev/null 2>&1 eend $? }