Insure any x depends pulled in during image creation before install gui.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user