1
0
Fork 0
cryptsetup/debian/tests/cryptroot-sysvinit.d/config
Daniel Baumann 74b680e410
Adding debian version 2:2.7.5-2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 10:45:48 +02:00

10 lines
406 B
Bash

PKGS_EXTRA+=( e2fsprogs ) # for fsck.ext4
PKGS_EXTRA+=( cryptsetup-initramfs cryptsetup )
# "$DISTRIBUTOR_ID" is defined in ../utils/cryptroot-common
case "$DISTRIBUTOR_ID" in
debian) PKG_INIT="sysvinit-core";;
ubuntu) PKG_INIT="systemd-sysv";;
*) echo "ERROR: Unknown distributor ID '$DISTRIBUTOR_ID', can't determine default init package" >&2;
exit 1;;
esac
# vim: set filetype=bash :