From a39f0d1aab324b54fe3c8fa2680b5db041d6977b Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 13 Dec 2021 14:53:28 -0500 Subject: [PATCH] Up fatal reboot timeout --- templates/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/install.sh b/templates/install.sh index 9c708fe..ef80190 100755 --- a/templates/install.sh +++ b/templates/install.sh @@ -541,8 +541,8 @@ cleanup() { if [[ -z ${DONE} ]]; then case ${install_option} in on) - echo "A fatal error occurred; rebooting in 10 seconds. Press any key to spawn a shell." - if ! read -t 10; then + echo "A fatal error occurred; rebooting in 30 seconds. Press any key to spawn a shell." + if ! read -t 30; then reboot fi ;;