V8.13.294.2025.10.28
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m58s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-10-28 19:14:45 +01:00
parent 5cdf9f93a1
commit 311074c1d3
12 changed files with 133 additions and 49 deletions

View File

@@ -88,12 +88,12 @@ Verify_checksums() {
if [ -e "${_CHECKSUM}" ]; then
#echo "Found ${_CHECKSUM}..." > "${_TTY}"
log_begin_msg "Found ${_CHECKSUM}..."
printf "Found %s...\n" "${_CHECKSUM}"
if [ -e "/bin/${_DIGEST}sum" ]; then
#echo "Checking ${_CHECKSUM}..." > "${_TTY}"
log_begin_msg "Checking ${_CHECKSUM}..."
printf "Checking %s...\n" "${_CHECKSUM}"
# Verify checksums
# shellcheck disable=SC2312
@@ -106,7 +106,7 @@ Verify_checksums() {
else
#echo "Not found /bin/${_DIGEST}sum..." > "${_TTY}"
log_begin_msg "Not found /bin/${_DIGEST}sum...."
printf "Not found /bin/%ssum....\n" "${_DIGEST}"
fi
@@ -121,7 +121,7 @@ Verify_checksums() {
case "${_RETURN}" in
0)
log_success_msg "Verification of ${_CHECKSUMS[*]} successful; continuing booting in 8 seconds."
log_success_msg "Verification of checksums successful; continuing booting in 8 seconds."
sleep 8
return 0
;;