Insure any x depends pulled in during image creation before install gui.

This commit is contained in:
Storm Dragon
2025-08-19 20:51:45 -04:00
parent 3e48abf598
commit cc91998a06
2 changed files with 13 additions and 13 deletions
+6 -2
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Configure Stormux
# A script to configure the system for new users.
#
@@ -73,7 +73,7 @@ fi
while [[ "$choice" != "Exit" ]]; do
case "$choice" in
"Change username")
./.includes/chuser.sh $(inputbox "Please enter the new username, letters, dashes, and underscores only.")
./.includes/chuser.sh "$(inputbox "Please enter the new username, letters, dashes, and underscores only.")"
restart
;;
"Configure Fenrir")
@@ -121,6 +121,9 @@ while [[ "$choice" != "Exit" ]]; do
"Convert to Server")
source .includes/convert-to-server.sh
;;
"Configure StormUX Repository")
add_stormux_repo
;;
esac
options=(
"Change username"
@@ -145,6 +148,7 @@ while [[ "$choice" != "Exit" ]]; do
"Get help on IRC"
"Update configure-stormux"
"Convert to Server"
"Configure StormUX Repository"
)
choice="$(menulist "${options[@]}")" || break
done