mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
19 lines
235 B
Plaintext
19 lines
235 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
PREREQ="dropbear"
|
||
|
|
||
|
prereqs() {
|
||
|
echo "$PREREQ"
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
prereqs)
|
||
|
prereqs
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. /usr/share/initramfs-tools/hook-functions
|
||
|
|
||
|
copy_exec /usr/share/initramfs-tools/zfsunlock /usr/bin
|