diff --git a/tet123 b/tet123 new file mode 100644 index 0000000..e69de29 diff --git a/vbox_create.sh b/vbox_create.sh index db7bdc8..cfc40c0 100644 --- a/vbox_create.sh +++ b/vbox_create.sh @@ -9,7 +9,7 @@ echo "Welches OS soll Installiert werden" echo COLUMNS=6 PS3='Please enter your choice: ' -options=("Ubuntu SRV" "Ubuntu GUI" "CentOS" "Quit") +options=("Ubuntu SRV" "Ubuntu GUI" "RHEL" "Quit") select opt in "${options[@]}" do case $opt in @@ -21,9 +21,9 @@ do VAR_OS="Ubuntu_64" VAR_ISO="ubuntu-20.04.1-desktop-amd64.iso" ;; - "CentOS") + "RHEL") VAR_OS="RedHat_64" - VAR_ISO="CentOS-8.3.2011-x86_64-boot.iso" + VAR_ISO="rhel-8.4-x86_64-dvd.iso" ;; "Quit") break diff --git a/vdi_create.sh b/vdi_create.sh index 008f67b..c42406b 100644 --- a/vdi_create.sh +++ b/vdi_create.sh @@ -9,18 +9,22 @@ echo "Welches OS soll Installiert werden" echo COLUMNS=6 PS3='Please enter your choice: ' -options=("Ubuntu CLI" "Ubuntu GUI" "CentOS" "Quit") +options=("Ubuntu CLI" "Ubuntu GUI" "Ubuntu GUI local repo" "CentOS" "Quit") select opt in "${options[@]}" do case $opt in "Ubuntu CLI") VAR_OS="Ubuntu_64" - VAR_VDI="master_ubuntu_2004_cli.vdi" + VAR_VDI="master_ubuntu_2004_cli_apt.vdi" ;; "Ubuntu GUI") VAR_OS="Ubuntu_64" VAR_VDI="master_ubuntu_2004_gui.vdi" ;; + "Ubuntu GUI local repo") + VAR_OS="Ubunut_64" + VAR_VDI="master_ubuntu_2004_gui_apt.vdi" + ;; "CentOS") VAR_OS="RedHat_64" VAR_VDI="master_co8.vdi"