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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 49BB1158086 for ; Tue, 30 Nov 2021 10:45:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8466B2BC014; Tue, 30 Nov 2021 10:45:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54B5F2BC014 for ; Tue, 30 Nov 2021 10:45:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35043342A64 for ; Tue, 30 Nov 2021 10:45:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF94C14F for ; Tue, 30 Nov 2021 10:45:19 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1638269112.ee9f408582a8f94577446f39b1ae3f8c85dd621b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-fs/nfs-utils/files/, net-fs/nfs-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-fs/nfs-utils/files/nfs.initd net-fs/nfs-utils/nfs-utils-2.5.4-r2.ebuild net-fs/nfs-utils/nfs-utils-2.5.4-r3.ebuild X-VCS-Directories: net-fs/nfs-utils/files/ net-fs/nfs-utils/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ee9f408582a8f94577446f39b1ae3f8c85dd621b X-VCS-Branch: master Date: Tue, 30 Nov 2021 10:45:19 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 557cb18e-ec31-490e-a201-2e06ea82682e X-Archives-Hash: 6089c862531835abe99f03187a05ef4b commit: ee9f408582a8f94577446f39b1ae3f8c85dd621b Author: Stijn Tintel linux-ipv6 be> AuthorDate: Tue Nov 30 10:45:12 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Nov 30 10:45:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee9f4085 net-fs/nfs-utils: fix killall usage in init script * Bug 664066 has surfaced again. Fix it properly by calling killall with `--signal=HUP` rather than the short form that keeps being broken. Closes: https://github.com/gentoo/gentoo/pull/23121 Closes: https://bugs.gentoo.org/664066 Signed-off-by: Stijn Tintel linux-ipv6.be> Signed-off-by: David Seifert gentoo.org> net-fs/nfs-utils/files/nfs.initd | 2 +- .../nfs-utils/{nfs-utils-2.5.4-r2.ebuild => nfs-utils-2.5.4-r3.ebuild} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-fs/nfs-utils/files/nfs.initd b/net-fs/nfs-utils/files/nfs.initd index da81e6d6684a..6540c9f92075 100644 --- a/net-fs/nfs-utils/files/nfs.initd +++ b/net-fs/nfs-utils/files/nfs.initd @@ -51,7 +51,7 @@ mount_nfsd() { fi # Restart idmapd if needed #220747 if grep -qs nfsd /proc/modules ; then - killall -q -HUP rpc.idmapd + killall -q --signal=HUP rpc.idmapd fi fi diff --git a/net-fs/nfs-utils/nfs-utils-2.5.4-r2.ebuild b/net-fs/nfs-utils/nfs-utils-2.5.4-r3.ebuild similarity index 100% rename from net-fs/nfs-utils/nfs-utils-2.5.4-r2.ebuild rename to net-fs/nfs-utils/nfs-utils-2.5.4-r3.ebuild