From 3312fbbb66908807bdfbf14ddfcf3bebb2daa9fb Mon Sep 17 00:00:00 2001 From: Alvin Schiller <103769832+AlvinSchiller@users.noreply.github.com> Date: Tue, 28 Nov 2023 22:09:54 +0100 Subject: [PATCH] activate _options_update_raspi_os --- ci/installation/run_install_common.sh | 2 ++ ci/installation/run_install_faststartup.sh | 2 ++ ci/installation/run_install_webapp_download.sh | 2 ++ ci/installation/run_install_webapp_local.sh | 2 ++ installation/routines/customize_options.sh | 4 +--- 5 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ci/installation/run_install_common.sh b/ci/installation/run_install_common.sh index 102c71aa4..2aea7e922 100644 --- a/ci/installation/run_install_common.sh +++ b/ci/installation/run_install_common.sh @@ -26,6 +26,7 @@ export ENABLE_WEBAPP_PROD_DOWNLOAD=true # y - setup webapp # n - setup kiosk mode # - - install node (forced WebApp Download) +# y - update os # n - reboot "${LOCAL_INSTALL_SCRIPT_PATH}/install-jukebox.sh" <<< 'y @@ -39,5 +40,6 @@ n y y n +y n ' diff --git a/ci/installation/run_install_faststartup.sh b/ci/installation/run_install_faststartup.sh index 46cda25ec..c16939428 100644 --- a/ci/installation/run_install_faststartup.sh +++ b/ci/installation/run_install_faststartup.sh @@ -24,6 +24,7 @@ LOCAL_INSTALL_SCRIPT_PATH="${LOCAL_INSTALL_SCRIPT_PATH%/}" # n - setup webapp # - - setup kiosk mode (only with webapp = y) # - - install node (only with webapp = y) +# y - update os # n - reboot "${LOCAL_INSTALL_SCRIPT_PATH}/install-jukebox.sh" <<< 'y @@ -35,5 +36,6 @@ y n n n +y n ' diff --git a/ci/installation/run_install_webapp_download.sh b/ci/installation/run_install_webapp_download.sh index 69496e8e4..016275821 100644 --- a/ci/installation/run_install_webapp_download.sh +++ b/ci/installation/run_install_webapp_download.sh @@ -25,6 +25,7 @@ export ENABLE_WEBAPP_PROD_DOWNLOAD=true # y - setup webapp # y - setup kiosk mode # - - install node (forced webapp download) +# y - update os # n - reboot "${LOCAL_INSTALL_SCRIPT_PATH}/install-jukebox.sh" <<< 'y @@ -37,5 +38,6 @@ n n y y +y n ' diff --git a/ci/installation/run_install_webapp_local.sh b/ci/installation/run_install_webapp_local.sh index d4f122fd5..461d7005b 100644 --- a/ci/installation/run_install_webapp_local.sh +++ b/ci/installation/run_install_webapp_local.sh @@ -25,6 +25,7 @@ export ENABLE_WEBAPP_PROD_DOWNLOAD=false # y - setup webapp # y - setup kiosk mode # y - install node +# y - update os # n - reboot "${LOCAL_INSTALL_SCRIPT_PATH}/install-jukebox.sh" <<< 'y @@ -38,5 +39,6 @@ n y y y +y n ' diff --git a/installation/routines/customize_options.sh b/installation/routines/customize_options.sh index 50df075fe..c281fe36e 100644 --- a/installation/routines/customize_options.sh +++ b/installation/routines/customize_options.sh @@ -331,9 +331,7 @@ _run_customize_options() { _option_kiosk_mode _option_webapp_devel_build fi - # Bullseye is currently under active development and should be updated in any case. - # Hence, removing the step below as it becomse mandatory - # _options_update_raspi_os + _options_update_raspi_os } customize_options() {