summaryrefslogtreecommitdiff
path: root/extra/eudev/udev.initd
diff options
context:
space:
mode:
Diffstat (limited to 'extra/eudev/udev.initd')
-rw-r--r--extra/eudev/udev.initd22
1 files changed, 0 insertions, 22 deletions
diff --git a/extra/eudev/udev.initd b/extra/eudev/udev.initd
deleted file mode 100644
index 5ce2354..0000000
--- a/extra/eudev/udev.initd
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/sbin/openrc-run
-
-start () {
- # Start the udev daemon to continually watch for, and act on,
- # uevents
- /sbin/udevd --daemon
-
- # Now traverse /sys in order to "coldplug" devices that have
- # already been discovered
- /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
- /sbin/udevadm settle
- fi
-
- # If any LVM based partitions are on the system, ensure they
- # are activated so they can be used.
- if [ -x /sbin/vgchange ]; then /sbin/vgchange -a y >/dev/null; fi
-}