summaryrefslogtreecommitdiffstats
path: root/udev/rules.d/60-zvol.rules.in
diff options
context:
space:
mode:
authorKyle Fuller <[email protected]>2011-08-05 20:22:58 +0100
committerBrian Behlendorf <[email protected]>2011-08-08 16:21:10 -0700
commit12d06bac9b22b11d8a322dfea4bdb50b106c254f (patch)
treed3014ec1f682731484091506966b2032d2396f8a /udev/rules.d/60-zvol.rules.in
parentf3ab88d6461dec46dea240763843f66300facfab (diff)
Move udev rules from /etc/udev to /lib/udev
This change moves the default install location for the zfs udev rules from /etc/udev/ to /lib/udev/. The correct convention is for rules provided by a package to be installed in /lib/udev/. The /etc/udev/ directory is reserved for custom rules or local overrides. Additionally, this patch cleans up some abuse of the bindir install location by adding a udevdir and udevruledir install directories. This allows us to revert to the default bin install location. The udev install directories can be set with the following new options. --with-udevdir=DIR install udev helpers [EPREFIX/lib/udev] --with-udevruledir=DIR install udev rules [UDEVDIR/rules.d] Signed-off-by: Brian Behlendorf <[email protected]> Closes #356
Diffstat (limited to 'udev/rules.d/60-zvol.rules.in')
-rw-r--r--udev/rules.d/60-zvol.rules.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/udev/rules.d/60-zvol.rules.in b/udev/rules.d/60-zvol.rules.in
new file mode 100644
index 000000000..199f77e0c
--- /dev/null
+++ b/udev/rules.d/60-zvol.rules.in
@@ -0,0 +1,6 @@
+# Persistent links for zvol
+#
+# persistent disk links: /dev/zvol/dataset_name
+# also creates compatibilty symlink of /dev/dataset_name
+
+KERNEL=="zd*" SUBSYSTEM=="block" ACTION=="add|change" PROGRAM="@udevdir@/zvol_id $tempnode" SYMLINK+="zvol/%c %c"