From 8493a4944de29b6f3c683376908136db9686ef2e Mon Sep 17 00:00:00 2001 From: PeonyThePeon Date: Tue, 21 Jul 2026 05:28:09 +0100 Subject: [PATCH] Update key-init.sh year sanity check for 2026 Signed-off-by: PeonyThePeon --- initrd/bin/key-init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/initrd/bin/key-init.sh b/initrd/bin/key-init.sh index c139e3f26..94e068b11 100755 --- a/initrd/bin/key-init.sh +++ b/initrd/bin/key-init.sh @@ -8,8 +8,8 @@ TRACE_FUNC # Post processing of keys # Good system clock is required for GPG to work properly. -# if system year is less then 2024, prompt user to set correct time -if [ "$(date +%Y)" -lt 2024 ]; then +# if system year is less then 2026, prompt user to set correct time +if [ "$(date +%Y)" -lt 2026 ]; then if whiptail_warning --title "System Time Incorrect" \ --yesno "The system time is incorrect. Please set the correct time." \ 0 80 --yes-button Continue --no-button Skip --clear; then