|
@@ -49,17 +49,17 @@ case "${1}" in
|
|
|
|
|
|
# Start the udev daemon to continually watch for, and act on,
|
|
|
# uevents
|
|
|
- /lib/systemd/systemd-udevd --daemon
|
|
|
+ /sbin/udevd --daemon
|
|
|
|
|
|
# Now traverse /sys in order to "coldplug" devices that have
|
|
|
# already been discovered
|
|
|
- /bin/udevadm trigger --action=add --type=subsystems
|
|
|
- /bin/udevadm trigger --action=add --type=devices
|
|
|
- /bin/udevadm trigger --action=change --type=devices
|
|
|
+ /sbin/udevadm trigger --action=add --type=subsystems
|
|
|
+ /sbin/udevadm trigger --action=add --type=devices
|
|
|
+ /sbin/udevadm trigger --action=change --type=devices
|
|
|
|
|
|
# Now wait for udevd to process the uevents we triggered
|
|
|
if ! is_true "$OMIT_UDEV_SETTLE"; then
|
|
|
- /bin/udevadm settle
|
|
|
+ /sbin/udevadm settle
|
|
|
fi
|
|
|
|
|
|
# If any LVM based partitions are on the system, ensure they
|