Convert to Server option added. This should be used on a fresh Stormux image, and only by people who know what they are doing.

This commit is contained in:
Storm Dragon
2024-03-06 02:09:55 -05:00
parent 7026da6e73
commit 2d140354df
2 changed files with 78 additions and 0 deletions

View File

@ -103,6 +103,9 @@ while [[ "$choice" != "Exit" ]]; do
sudo "${sudoFlags[@]}" git pull
exit $?
;;
"Convert to Server")
source .includes/convert-to-server.sh
;;
esac
options=(
"Change username"
@ -123,6 +126,7 @@ while [[ "$choice" != "Exit" ]]; do
options+=("Set timezone"
"Get help on IRC"
"Update configure-stormux"
"Convert to Server"
)
choice="$(menulist "${options[@]}")" || break
done