summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.d/udev2
1 files changed, 1 insertions, 1 deletions
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