mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
Ignore checksum for ca-certificates package due to expiring certs.
Fixes #220.
This commit is contained in:
parent
cee1bb08bd
commit
fb97147cf9
2 changed files with 8 additions and 3 deletions
|
|
@ -389,8 +389,13 @@ src_checksum() {
|
|||
echo "${pkg}: no checksum stored!"
|
||||
false
|
||||
fi
|
||||
echo "${pkg}: checksumming created package."
|
||||
sha256sum -c "${checksum_file}" || rval=$?
|
||||
checkignore=$(cat ${checksum_file})
|
||||
if [ "${checkignore:0:14}" = "IGNORECHECKSUM" ]; then
|
||||
echo "${pkg}: IGNORING checksum for created package."
|
||||
else
|
||||
echo "${pkg}: checksumming created package."
|
||||
sha256sum -c "${checksum_file}" || rval=$?
|
||||
fi
|
||||
rm "${checksum_file}"
|
||||
fi
|
||||
return "${rval}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue