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 78B57138359 for ; Wed, 5 Aug 2020 16:13:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C50F8E0844; Wed, 5 Aug 2020 16:13:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ACE86E0844 for ; Wed, 5 Aug 2020 16:13:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8D3B34F014 for ; Wed, 5 Aug 2020 16:13:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34DE79C for ; Wed, 5 Aug 2020 16:13:37 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1596643942.99de14a98649cf119ce220dd1c9fba58b98cb3b2.williamh@gentoo> Subject: [gentoo-commits] proj/udev-gentoo-scripts:master commit in: init.d/ X-VCS-Repository: proj/udev-gentoo-scripts X-VCS-Files: init.d/udev X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 99de14a98649cf119ce220dd1c9fba58b98cb3b2 X-VCS-Branch: master Date: Wed, 5 Aug 2020 16:13:37 +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: ff5ae00b-c6ab-40b6-8ef1-714cd54db6fc X-Archives-Hash: e3194deba658ab073fc8aa9762d60712 commit: 99de14a98649cf119ce220dd1c9fba58b98cb3b2 Author: Mike Gilbert gentoo org> AuthorDate: Tue Aug 4 19:31:16 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Wed Aug 5 16:12:22 2020 +0000 URL: https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=99de14a9 Allow udevd to be a symlink As of systemd-246, systemd-udevd is a symlink to udevadm. Bug: https://bugs.gentoo.org/734950 Reverts: b165050513894b3d600e8302bd68c7ba553fbb04 Signed-off-by: William Hubbs gentoo.org> init.d/udev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/udev b/init.d/udev index 4e618ca..6446344 100644 --- a/init.d/udev +++ b/init.d/udev @@ -19,7 +19,7 @@ get_udevd_binary() { local bins bins="/sbin/udevd /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd" for f in ${bins}; do - if [ -x "$f" ] && [ ! -L "$f" ]; then + if [ -x "$f" ]; then command="$f" fi done