From e59e0288214b954e68c47109e450b3a0ad1f0780 Mon Sep 17 00:00:00 2001 From: Mike Gilbert Date: Tue, 4 Aug 2020 15:31:16 -0400 Subject: [PATCH] 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: Mike Gilbert --- 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 -- 2.27.0