X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=dracut%2F90zfs%2Fmodule-setup.sh;h=6dd3d5c17527fa2ebc2689d12f8f6a7c5515d57f;hb=7f4afd300b753ee7e0ce1f8d12c098119193001b;hp=1816b38d7a4d462d0c449fbd61da6cbb790fd385;hpb=fde4ce992db516796df3a7d1c0e018c5f8c537f6;p=zfs.git diff --git a/dracut/90zfs/module-setup.sh b/dracut/90zfs/module-setup.sh index 1816b38..6dd3d5c 100755 --- a/dracut/90zfs/module-setup.sh +++ b/dracut/90zfs/module-setup.sh @@ -1,46 +1,46 @@ #!/bin/sh check() { - # We depend on udev-rules being loaded - [ "$1" = "-d" ] && return 0 + # We depend on udev-rules being loaded + [ "$1" = "-d" ] && return 0 - # Verify the zfs tool chain - which zpool >/dev/null 2>&1 || return 1 - which zfs >/dev/null 2>&1 || return 1 + # Verify the zfs tool chain + which zpool >/dev/null 2>&1 || return 1 + which zfs >/dev/null 2>&1 || return 1 - return 0 + return 0 } depends() { - echo udev-rules - return 0 + echo udev-rules + return 0 } installkernel() { - instmods zfs - instmods zcommon - instmods znvpair - instmods zavl - instmods zunicode - instmods spl - instmods zlib_deflate - instmods zlib_inflate + instmods zfs + instmods zcommon + instmods znvpair + instmods zavl + instmods zunicode + instmods spl + instmods zlib_deflate + instmods zlib_inflate } 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 /etc/zfs/zdev.conf - inst /etc/zfs/zpool.cache - inst /etc/hostid - dracut_install zfs - dracut_install zpool - dracut_install zpool_layout - dracut_install zpool_id - dracut_install zvol_id - dracut_install mount.zfs - dracut_install hostid - inst_hook cmdline 95 "$moddir/parse-zfs.sh" - inst_hook mount 98 "$moddir/mount-zfs.sh" + 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 /etc/zfs/zdev.conf + inst /etc/zfs/zpool.cache + inst /etc/hostid + dracut_install zfs + dracut_install zpool + dracut_install zpool_layout + dracut_install zpool_id + dracut_install zvol_id + dracut_install mount.zfs + dracut_install hostid + inst_hook cmdline 95 "$moddir/parse-zfs.sh" + inst_hook mount 98 "$moddir/mount-zfs.sh" }