Add packages.csv checksum verification

This commit is contained in:
Santiago Lo Coco 2025-01-27 15:41:39 +01:00
parent c2bc45edef
commit 4d050ab5e8
Signed by: slococo
GPG Key ID: F995EFC8B68B1ADF
1 changed files with 7 additions and 0 deletions

View File

@ -260,6 +260,13 @@ getThePackages() {
if [ ! -f "packages.csv" ]; then if [ ! -f "packages.csv" ]; then
printWaitBox printWaitBox
curl -LO "https://git.slc.ar/slococo/calsais/raw/branch/master/packages.csv" 2>&1 | debug curl -LO "https://git.slc.ar/slococo/calsais/raw/branch/master/packages.csv" 2>&1 | debug
shasum="$(sha256sum packages.csv | cut -d' ' -f1)"
if [ ! "$shasum" = "0f10df6a3241d1ee4f36535fb8fafc9d3ae3b38e3712af1b4fcddd9f9b4c5738" ]; then
dialog --yesno "\nThe package checksum verification failed. Do you still want to continue?" 7 39
if [ $? -ne 0 ]; then
printAndExit "The package checksum verification failed."
fi
fi
fi fi
if [ "${1}" = "N" ]; then if [ "${1}" = "N" ]; then
dialog --msgbox "\nA menu will appear where you can deselect the packages you don't want to be installed." 8 59 dialog --msgbox "\nA menu will appear where you can deselect the packages you don't want to be installed." 8 59