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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 28A04158090 for ; Sun, 29 May 2022 23:50:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2993DE0922; Sun, 29 May 2022 23:50:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 B836AE0922 for ; Sun, 29 May 2022 23:50:09 +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 41D2F3412A9 for ; Sun, 29 May 2022 23:50:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A337D3 for ; Sun, 29 May 2022 23:50:06 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1653868195.6df04002659fc028670918c7156a88198b5ddef2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd-utils/systemd-utils-250.6.ebuild X-VCS-Directories: sys-apps/systemd-utils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 6df04002659fc028670918c7156a88198b5ddef2 X-VCS-Branch: master Date: Sun, 29 May 2022 23:50: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0c471a77-b6f4-47e5-85c6-2143bc39101f X-Archives-Hash: 36b2bad8a50b5a993d4f2097bae5c9b8 commit: 6df04002659fc028670918c7156a88198b5ddef2 Author: Mike Gilbert gentoo org> AuthorDate: Sun May 29 23:48:36 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun May 29 23:49:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df04002 sys-apps/systemd-utils: call udev_reload Closes: https://bugs.gentoo.org/848048 Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd-utils/systemd-utils-250.6.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-apps/systemd-utils/systemd-utils-250.6.ebuild b/sys-apps/systemd-utils/systemd-utils-250.6.ebuild index ce351b7aa23d..9e395b363772 100644 --- a/sys-apps/systemd-utils/systemd-utils-250.6.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-250.6.ebuild @@ -6,7 +6,7 @@ PYTHON_COMPAT=( python3_{8..10} ) QA_PKGCONFIG_VERSION=$(ver_cut 1) -inherit bash-completion-r1 flag-o-matic meson-multilib python-any-r1 toolchain-funcs usr-ldscript +inherit bash-completion-r1 flag-o-matic meson-multilib python-any-r1 toolchain-funcs udev usr-ldscript DESCRIPTION="Utilities taken from systemd" HOMEPAGE="https://systemd.io/" @@ -492,5 +492,6 @@ pkg_postinst() { ebegin "Updating hwdb" systemd-hwdb --root="${ROOT}" update eend $? + udev_reload fi }