grml-chroot: bind-mount /run/udev in target system as workaround for lvm2 issue ...
[grml-scripts.git] / usr_sbin / grml-chroot
index a894e39..3b27505 100755 (executable)
@@ -98,6 +98,9 @@ else
     mountit "sysfs" "sys"
     mountit "/dev"   "dev"   "--bind"
     mountit "devpts" "dev/pts"
+    if [ -d "$DEST_"/run/udev ] && [ -d /run/udev ] ; then
+      mountit "/run/udev" "/run/udev" "--bind"
+    fi
 fi
 
 WROTE_DEBIAN_CHROOT=""