%PDF- %PDF-
Direktori : /usr/share/initramfs-tools/hooks/ |
Current File : //usr/share/initramfs-tools/hooks/zfs |
#!/bin/sh # # Add OpenZFS filesystem capabilities to an initrd, usually for a native ZFS root. # if [ "$1" = "prereqs" ]; then echo "udev" exit fi . /usr/share/initramfs-tools/hook-functions for req in "/sbin/zpool" "/sbin/zfs" "/sbin/mount.zfs"; do copy_exec "$req" || { echo "$req not available!" >&2 exit 2 } done copy_exec "/sbin/zdb" copy_exec "/lib/udev/vdev_id" copy_exec "/lib/udev/zvol_id" if command -v systemd-ask-password > /dev/null; then copy_exec "$(command -v systemd-ask-password)" fi # We use pthreads, but i-t from buster doesn't automatically # copy this indirect dependency: this can be removed when buster finally dies. find /lib/ -type f -name "libgcc_s.so.[1-9]" | while read -r libgcc; do copy_exec "$libgcc" done # shellcheck disable=SC2050 if [ 1 -gt 0 ]; then find /lib/ -name "libcurl.so.4" | while read -r libfetch; do copy_exec "$libfetch" done fi copy_file config "/etc/hostid" copy_file cache "/etc/zfs/zpool.cache" copy_file config "/etc/default/zfs" copy_file config "/etc/zfs/zfs-functions" copy_file config "/etc/zfs/vdev_id.conf" copy_file rule "/lib/udev/rules.d/60-zvol.rules" copy_file rule "/lib/udev/rules.d/69-vdev.rules" manual_add_modules zfs if [ -f "/etc/hostname" ]; then copy_file config "/etc/hostname" else hostname="$(mktemp -t hostname.XXXXXXXXXX)" hostname > "$hostname" copy_file config "$hostname" "/etc/hostname" rm -f "$hostname" fi