Abort if "live" d-i installation is attempted with minimal or stripped LH_PACKAGES_LISTS
This is required because lh_binary_rootfs removes /boot if minimal or stripped is the only packages list.
This commit is contained in:
parent
54a05a4691
commit
5cb3a1a800
|
@ -35,13 +35,22 @@ fi
|
|||
|
||||
# Check d-i configuration
|
||||
case "${LH_DEBIAN_INSTALLER}" in
|
||||
enabled|cdrom|netinst|netboot|businesscard|live)
|
||||
enabled|cdrom|netinst|netboot|businesscard)
|
||||
;;
|
||||
|
||||
disabled)
|
||||
exit 0
|
||||
;;
|
||||
|
||||
live)
|
||||
case "${LH_PACKAGES_LISTS}" in
|
||||
stripped|minimal)
|
||||
Echo_error "live d-i installation is incompatbile with stripped and minimal"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
||||
*)
|
||||
Echo_error "debian-installer flavour ${LH_DEBIAN_INSTALLER} not supported."
|
||||
exit 1
|
||||
|
|
Loading…
Reference in New Issue