From 906f8e3ae24a084d9a70d33d84c0ce29bdafa79c Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Mon, 2 Jul 2012 12:34:11 +0100 Subject: appliance: Update paths to udevd. systemd is playing a WTF game with udevd, moving it around and renaming it unnecessarily in each release. Chase all known locations. --- appliance/init | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appliance/init b/appliance/init index bfc09528..f9818b63 100755 --- a/appliance/init +++ b/appliance/init @@ -33,7 +33,9 @@ elif [ -x /sbin/start_udev ] && /sbin/start_udev; then : else # Find udevd and run it directly. - for f in /sbin/udevd /lib/udev/udevd /lib/systemd/systemd-udevd; do + for f in /sbin/udevd /lib/udev/udevd \ + /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd \ + /usr/lib/udev/udevd; do if [ -x "$f" ]; then UDEVD="$f"; fi done if [ -n "$UDEVD" ]; then -- cgit