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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-12-03 19:15:00 +01:00
parent c113d985e7
commit 205678c415
7 changed files with 484 additions and 83 deletions

View File

@@ -299,16 +299,14 @@ Verify_checksums() {
case "${_RETURN_PGP},${_RETURN_SHA}" in
"0,0")
log_ok "Verification of [GPG signature] and [sha checksum] file successful; continuing booting in 8 seconds."
log_success_msg "Verification of [GPG signature] and [sha checksum] file successful; continuing booting in 8 seconds."
sleep 8
log_ok "Verification of [GPG signature] and [sha checksum] file successful; continuing booting."
log_success_msg "Verification of [GPG signature] and [sha checksum] file successful; continuing booting."
return 0
;;
"na,0")
log_ok "Verification of [sha checksum] file successful; continuing booting in 8 seconds."
log_success_msg "Verification of [sha checksum] file successful; continuing booting in 8 seconds."
sleep 8
log_ok "Verification of [sha checksum] file successful; continuing booting."
log_success_msg "Verification of [sha checksum] file successful; continuing booting."
return 0
;;