Defaulting to obsolete md5 for checksums instead of sha256 on debian, as debians cdrom-check in d-i only supports md5.
This commit is contained in:
parent
7f50113e74
commit
bfbd7af101
|
@ -875,7 +875,15 @@ Set_defaults ()
|
|||
fi
|
||||
|
||||
# Setting checksums
|
||||
LB_CHECKSUMS="${LB_CHECKSUMS:-sha256}"
|
||||
case "${LB_MODE}" in
|
||||
progress-linux)
|
||||
LB_CHECKSUMS="${LB_CHECKSUMS:-sha256}"
|
||||
;;
|
||||
|
||||
*)
|
||||
LB_CHECKSUMS="${LB_CHECKSUMS:-md5}"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Setting compression
|
||||
LB_COMPRESSION="${LB_COMPRESSION:-none}"
|
||||
|
|
Loading…
Reference in New Issue