=== modified file 'initramfs-tools-script' --- initramfs-tools-script 2018-08-19 01:35:11 +0000 +++ initramfs-tools-script 2020-07-04 08:59:37 +0000 @@ -177,5 +177,10 @@ rm -f /conf/conf.d/cryptroot.mandos fi elif [ -x /usr/bin/cryptroot-unlock ]; then - setsid /lib/mandos/mandos-to-cryptroot-unlock & + # Use setsid if available + if command -v setsid >/dev/null 2>&1; then + setsid /lib/mandos/mandos-to-cryptroot-unlock & + else + /lib/mandos/mandos-to-cryptroot-unlock & + fi fi