mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-11 19:00:02 +01:00
- add loop module to initramfs image - modprobe loop before reencrypt start - add rd.luks.reencrypt_keyslot= - add conflict with dracut crypt module - drop to emergency_shell after reencryption
30 lines
703 B
Bash
Executable File
30 lines
703 B
Bash
Executable File
#!/bin/bash
|
|
|
|
check() {
|
|
[ -x /sbin/cryptsetup-reencrypt ] || return 1
|
|
return 255
|
|
}
|
|
|
|
depends() {
|
|
echo dm rootfs-block
|
|
}
|
|
|
|
installkernel() {
|
|
# requires hostonly='' override so that loop module is pulled in initramfs
|
|
# even if not loaded in actual kernel. dracut bug?
|
|
hostonly='' instmods dm_crypt =crypto loop
|
|
}
|
|
|
|
install() {
|
|
if dracut_module_included crypt; then
|
|
derror "'reencrypt' can't be installed together with 'crypt'."
|
|
derror "Add '-o crypt' option to install reencrypt module."
|
|
return 1
|
|
fi
|
|
|
|
dracut_install cryptsetup-reencrypt
|
|
|
|
inst_hook cmdline 30 "$moddir/parse-reencrypt.sh"
|
|
inst_simple "$moddir"/reencrypt.sh /sbin/reencrypt
|
|
}
|