v3-revamp-fedora

This commit is contained in:
2026-07-14 22:16:02 +02:00
parent 79363564a6
commit 9b389346cb
4 changed files with 96 additions and 118 deletions
+1 -5
View File
@@ -232,8 +232,6 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
echo
echo " 1) minimal"
echo " 2) full"
echo " 3) workstation"
echo " 4) server"
if ! read -t 15 -rp "Enter choice [1/2/3/4] (default: 1): " choice; then
choice="1"
fi
@@ -241,9 +239,7 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
case "$choice" in
1|"") INSTALL_LEVEL="minimal"; break ;;
2) INSTALL_LEVEL="full"; break ;;
3) INSTALL_LEVEL="workstation"; break ;;
4) INSTALL_LEVEL="server"; break ;;
*) echo "Invalid option. Please enter 1, 2, 3, or 4." ;;
*) echo "Invalid option. Please enter 1 or 2." ;;
esac
done