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 9851E138A1A for ; Thu, 22 Jan 2015 23:01:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44447E0919; Thu, 22 Jan 2015 23:01:28 +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 8E5CAE0919 for ; Thu, 22 Jan 2015 23:01:27 +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 D195334075F for ; Thu, 22 Jan 2015 23:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88B7810286 for ; Thu, 22 Jan 2015 23:01:25 +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: <1421335738.f86f4c03e6b403614e4613dff5805429740b076e.robbat2@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: net/ X-VCS-Repository: proj/netifrc X-VCS-Files: net/dhcpcd.sh X-VCS-Directories: net/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: f86f4c03e6b403614e4613dff5805429740b076e X-VCS-Branch: master Date: Thu, 22 Jan 2015 23:01:25 +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: 41874b21-d83c-4d6c-b8a4-a4559188f180 X-Archives-Hash: b5185257dc759db4b36f21588b881b59 commit: f86f4c03e6b403614e4613dff5805429740b076e Author: Mike Gilbert gentoo org> AuthorDate: Sun Jan 11 05:56:51 2015 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Thu Jan 15 15:28:58 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/netifrc.git;a=commit;h=f86f4c03 dhcpcd: Avoid calling start-stop-daemon X-Gentoo-Bug: 536282 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=536282 --- net/dhcpcd.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/net/dhcpcd.sh b/net/dhcpcd.sh index bdb60c6..c598083 100644 --- a/net/dhcpcd.sh +++ b/net/dhcpcd.sh @@ -82,10 +82,7 @@ dhcpcd_stop() [ -z "${opts}" ] && opts=${dhcp} case " ${opts} " in *" release "*) dhcpcd -k "${IFACE}" ;; - *) - start-stop-daemon --stop --quiet \ - --signal ${sig} --pidfile "${pidfile}" - ;; + *) dhcpcd -x "${IFACE}" ;; esac eend $? }