@@ -, +, @@ --- init.d/udev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/init.d/udev +++ a/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 --