diff options
author | Kyle Fuller <[email protected]> | 2011-08-05 20:22:58 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-08-08 16:21:10 -0700 |
commit | 12d06bac9b22b11d8a322dfea4bdb50b106c254f (patch) | |
tree | d3014ec1f682731484091506966b2032d2396f8a /dracut | |
parent | f3ab88d6461dec46dea240763843f66300facfab (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 'dracut')
-rwxr-xr-x | dracut/90zfs/module-setup.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dracut/90zfs/module-setup.sh b/dracut/90zfs/module-setup.sh index 6dd3d5c17..822f89988 100755 --- a/dracut/90zfs/module-setup.sh +++ b/dracut/90zfs/module-setup.sh @@ -29,8 +29,8 @@ installkernel() { install() { inst_rules "$moddir/90-zfs.rules" - inst_rules /etc/udev/rules.d/60-zpool.rules - inst_rules /etc/udev/rules.d/60-zvol.rules + inst_rules /lib/udev/rules.d/60-zpool.rules + inst_rules /lib/udev/rules.d/60-zvol.rules inst /etc/zfs/zdev.conf inst /etc/zfs/zpool.cache inst /etc/hostid |