1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
Description: Support the new /run/udev location for udev detection.
/run is a new cross-distribution location for the storage of
transient state files, i.e. files containing run-time information
that may or may not need to be written early in the boot process and
which does not require preserving across reboots.
.
A result of that change is that udev no longer uses /dev/ to store
its runtime state file, i.e. the /dev/.udev/ directory, /dev/.udevdb
and /dev/.udev.tdb are gone and udev uses /run/udev/ now.
Author: Roger Leigh <rleigh@codelibre.net>
Origin: other, https://bugs.debian.org/cgi-bin/bugreport.cgi?msg=10;filename=aoetools-run-udev.patch;att=1;bug=644308
Bug-Debian: https://bugs.debian.org/644308
Forwarded: no
Reviewed-By: David MartÃnez Moreno <ender@debian.org>
Last-Update: 2014-01-13
--- a/aoe-mkdevs
+++ b/aoe-mkdevs
@@ -23,7 +23,7 @@
EOF
exit 1
fi
-if test "`ps axwwww | grep 'udev[d]'`" || test -d "/dev/.udev"; then
+if test "`ps axwwww | grep 'udev[d]'`" || test -d "/run/udev" || test -d "/dev/.udev"; then
cat 1>&2 <<EOF
$zero Error: udev detected. You shouldn't need to use $zero.
$zero: Please see the aoe-mkdevs manpage.
--- a/aoe-mkshelf.in
+++ b/aoe-mkshelf.in
@@ -18,7 +18,7 @@
EOF
exit 1
fi
-if test "`ps axwwww | grep 'udev[d]'`" || test -d "/dev/.udev"; then
+if test "`ps axwwww | grep 'udev[d]'`" || test -d "/run/udev" || test -d "/dev/.udev"; then
cat 1>&2 <<EOF
$zero Error: udev detected. You shouldn't need to use $zero.
$zero: Please see the aoe-mkshelf manpage.
|