From 41923fdbc608b40fad3ba1822d2e4b262615ea04 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 30 Mar 2021 10:26:15 -0500 Subject: Always check md5sum even if file exists. File my be partial. Print message that file is cached and then check md5sum. If md5sum fails, remove file. Next time script is ran, it will download and check again. --- download.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'download.sh') diff --git a/download.sh b/download.sh index 5f5c608..d210b1e 100644 --- a/download.sh +++ b/download.sh @@ -14,13 +14,16 @@ cat packages.csv patches.csv | while read -r line; do printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " download "${URL}" - if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then - rm -f "${LFS}/sources/${CACHEFILE}" - printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM} ${RED}FAILED! MD5 MISMATCH!${RST}\n" - exit 1 - fi + else + printf "%b" "${PRP}File cached ${YLW}${CACHEFILE}${RST}... " + fi + + if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then + rm -f "${LFS}/sources/${CACHEFILE}" + printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM} ${RED}FAILED! MD5 MISMATCH!${RST}\n" + exit 1 + fi printf "%b" "\n${IPRP} MD5SUM ${YLW}${MD5SUM}${GRN} OK\n${RST}" - fi done -- cgit v1.2.3-54-g00ecf