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 A86001381F3 for ; Sun, 25 Aug 2013 08:17:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CF1EE0C1B; Sun, 25 Aug 2013 08:17:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A700FE0C1B for ; Sun, 25 Aug 2013 08:17:31 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C166133ED12 for ; Sun, 25 Aug 2013 08:17:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 623FDE468F for ; Sun, 25 Aug 2013 08:17:29 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1377418452.ea75a2a347a806a647a43a3d896d7815b0133434.robbat2@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: net/ X-VCS-Repository: proj/netifrc X-VCS-Files: net/clip.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: ea75a2a347a806a647a43a3d896d7815b0133434 X-VCS-Branch: master Date: Sun, 25 Aug 2013 08:17:29 +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: 00acc252-2319-4aab-80f7-69c6405300ca X-Archives-Hash: 6c5df8a40e37e43e31dc3ea42340fbde commit: ea75a2a347a806a647a43a3d896d7815b0133434 Author: Robin H. Johnson gentoo org> AuthorDate: Sun Aug 25 08:12:56 2013 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sun Aug 25 08:14:12 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=ea75a2a3 Bug #460756: Make clip module quiet. This is a workaround as OpenRC is no longer silent on errors even with --quiet. Bug #482396 tracks the OpenRC issue. Signed-off-by: Robin H. Johnson gentoo.org> X-Gentoo-Bug: 460756 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=460756 --- net/clip.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/clip.sh b/net/clip.sh index 2fc290f..ca98250 100644 --- a/net/clip.sh +++ b/net/clip.sh @@ -73,10 +73,11 @@ atmclip_svcs_stop() are_atmclip_svcs_running() { - + [ -f /var/run/atmarpd.pid ] || return 1 start-stop-daemon --quiet --test --stop --pidfile /var/run/atmarpd.pid || return 1 if yesno ${clip_full:-yes}; then + [ -f /var/run/ilmid.pid -a -f /var/run/atmsigd.pid ] || return 1 start-stop-daemon --quiet --test --stop --pidfile /var/run/ilmid.pid || return 1 start-stop-daemon --quiet --test --stop --pidfile /var/run/atmsigd.pid || return 1 fi