diff options
author | Brian Behlendorf <[email protected]> | 2013-03-20 11:25:50 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-03-21 12:51:06 -0700 |
commit | b9676003665ceee5a859253dde3305eecc215016 (patch) | |
tree | ef9f7cf24d9e0b3b4d5a35001d17564cffd53728 /dracut/90zfs | |
parent | 68a2e016c8314caaf149c78f76dfb2ae139ab377 (diff) |
Refresh dracut module setup
60-zpool.rules was retired some time ago in favor of 69-vdev.rules.
Additionally, there is no guarentee a zpool.cache file exists so
only install it conditionally upon its existance.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'dracut/90zfs')
-rwxr-xr-x | dracut/90zfs/module-setup.sh.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dracut/90zfs/module-setup.sh.in b/dracut/90zfs/module-setup.sh.in index 23ebc3612..6eb684381 100755 --- a/dracut/90zfs/module-setup.sh.in +++ b/dracut/90zfs/module-setup.sh.in @@ -29,9 +29,8 @@ installkernel() { install() { inst_rules @udevruledir@/90-zfs.rules - inst_rules @udevruledir@/60-zpool.rules + inst_rules @udevruledir@/69-vdev.rules inst_rules @udevruledir@/60-zvol.rules - inst @sysconfdir@/zfs/zpool.cache dracut_install @sbindir@/zfs dracut_install @sbindir@/zpool dracut_install @udevdir@/vdev_id @@ -41,6 +40,10 @@ install() { inst_hook cmdline 95 "$moddir/parse-zfs.sh" inst_hook mount 98 "$moddir/mount-zfs.sh" + if [ -e @sysconfdir@/zfs/zpool.cache ]; then + inst @sysconfdir@/zfs/zpool.cache + fi + # Synchronize initramfs and system hostid TMP=`mktemp` AA=`hostid | cut -b 1,2` |