mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
f0102d6e75
This ensures that module-setup.sh script will always be able to install the required dracut components regardless of how the zfs package was configured. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
47 lines
955 B
Bash
Executable File
47 lines
955 B
Bash
Executable File
#!/bin/sh
|
|
|
|
check() {
|
|
# 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
|
|
|
|
return 0
|
|
}
|
|
|
|
depends() {
|
|
echo udev-rules
|
|
return 0
|
|
}
|
|
|
|
installkernel() {
|
|
instmods zfs
|
|
instmods zcommon
|
|
instmods znvpair
|
|
instmods zavl
|
|
instmods zunicode
|
|
instmods spl
|
|
instmods zlib_deflate
|
|
instmods zlib_inflate
|
|
}
|
|
|
|
install() {
|
|
inst_rules @udevruledir@/90-zfs.rules
|
|
inst_rules @udevruledir@/60-zpool.rules
|
|
inst_rules @udevruledir@/60-zvol.rules
|
|
inst @sysconfdir@/zfs/zdev.conf
|
|
inst @sysconfdir@/zfs/zpool.cache
|
|
inst @sysconfdir@/hostid
|
|
dracut_install @sbindir@/zfs
|
|
dracut_install @sbindir@/zpool
|
|
dracut_install @bindir@/zpool_layout
|
|
dracut_install @udevdir@/zpool_id
|
|
dracut_install @udevdir@/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"
|
|
}
|