Fix hard coded path in 60-vdev.rules.in
authorRichard Yao <ryao@cs.stonybrook.edu>
Mon, 12 Nov 2012 17:34:45 +0000 (12:34 -0500)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 13 Nov 2012 20:04:15 +0000 (12:04 -0800)
The udev data directory was hard coded in 60-vdev.rules.in. That causes
a problem when a distribution changes the location of the directory.
This was not an issue in the past because virtually all distributions
used the same path, but that is beginning to change following a decision
by the systemd developers to change the directory location to reflect
their take-over of udev maintainership. The testing branch of Gentoo
Linux adopted this change, which enabled the hardcoded directory
location to trigger a regression.

Signed-off-by: Richard Yao <ryao@cs.stonybrook.edu>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #1085

udev/rules.d/60-vdev.rules.in
udev/rules.d/60-zpool.rules.in

index a1885d9..e47b5aa 100644 (file)
@@ -1,8 +1,8 @@
 #
-# /lib/udev/rules.d/60-vdev.rules
+# @udevdir@/rules.d/60-vdev.rules
 #
 
-ENV{DEVTYPE}=="disk", IMPORT{program}="/lib/udev/vdev_id -d %k"
+ENV{DEVTYPE}=="disk", IMPORT{program}="@udevdir@/vdev_id -d %k"
 
 KERNEL=="*[!0-9]", ENV{SUBSYSTEM}=="block", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}"
 KERNEL=="*[0-9]", ENV{SUBSYSTEM}=="block", ENV{DEVTYPE}=="partition", ENV{ID_VDEV}=="?*", SYMLINK+="$env{ID_VDEV_PATH}-part%n"
index 32fceed..54b9fcd 100644 (file)
@@ -1,5 +1,5 @@
 #
-# /lib/udev/rules.d/60-zpool.rules
+# @udevdir@/rules.d/60-zpool.rules
 #
 
 ENV{DEVTYPE}=="disk", IMPORT{program}="@udevdir@/zpool_id -d %p"