Unstable / testing packages sometimes contain hacks that are patching files

This commit is contained in:
Igor Pecovnik
2024-02-01 13:26:49 +01:00
committed by Gunjan Gupta
parent 557393844d
commit 07037232a1

View File

@@ -198,9 +198,12 @@ function create_new_rootfs_cache_via_debootstrap() {
fi fi
# stage: check md5 sum of installed packages. Just in case. @TODO: rpardini: this should also be done when a cache is used, not only when it is created # stage: check md5 sum of installed packages. Just in case. @TODO: rpardini: this should also be done when a cache is used, not only when it is created
display_alert "Checking MD5 sum of installed packages" "debsums" "info" # lets check only for supported targets only unless forced
declare -g if_error_detail_message="Check MD5 sum of installed packages failed" if [[ "${DISTRIBUTION_STATUS}" == "supported" || "${FORCE_CHECK_MD5_PACKAGES:-"no"}" == "yes" ]]; then
chroot_sdcard debsums --silent display_alert "Checking MD5 sum of installed packages" "debsums" "info"
declare -g if_error_detail_message="Check MD5 sum of installed packages failed"
chroot_sdcard debsums --silent
fi
# # Remove packages from packages.uninstall # # Remove packages from packages.uninstall
# # @TODO: aggregation.py handling of this... if we wanted it removed in rootfs cache, why did we install it in the first place? # # @TODO: aggregation.py handling of this... if we wanted it removed in rootfs cache, why did we install it in the first place?