From 370d351887c9bb9444471e5a22e8e0be8f4b53ae Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 23 Nov 2025 00:37:14 -0500 Subject: [PATCH] Trim down the configure-stormux stub a bit more. It's actually tiny now for what is needed. --- x86_64/airootfs/usr/local/bin/configure-stormux | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/x86_64/airootfs/usr/local/bin/configure-stormux b/x86_64/airootfs/usr/local/bin/configure-stormux index 5399a99..746f36c 100755 --- a/x86_64/airootfs/usr/local/bin/configure-stormux +++ b/x86_64/airootfs/usr/local/bin/configure-stormux @@ -1,17 +1,9 @@ #!/usr/bin/env bash -# For audible sudo prompts: -unset sudoFlags -if [[ -x /etc/audibleprompt.sh ]]; then - export SUDO_ASKPASS=/etc/audibleprompt.sh - export sudoFlags=("-A") -fi - trap cleanup EXIT cleanup() { - echo "Initial setup is not complete." echo "To continue setup, please run:" - echo "sudo configure-stormux" + echo "configure-stormux" } # Volume calibration is now handled in stormux_first_boot.sh @@ -76,8 +68,6 @@ else exit 1 fi -echo -echo "Initial setup is complete." echo read -rp "Would you like to run the Stormux installer? [y/N]: " answer answer="${answer:0:1}"