5
0
Fork 0

commit by to_remotes 2024-05-03 10:58:07 +0200 from vmdevhw

main
Holger Wasem 2024-05-03 10:58:07 +02:00
parent c5abb8884f
commit 7d0b6baaf3
1 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,11 @@
#!/usr/bin/bash #!/usr/bin/bash
sudo apt update
sudo apt dist-upgrade -y
sudo apt install -y lvm2 zsh cloud-utils xfsprogs jq hstr ufw sudo apt install -y lvm2 zsh cloud-utils xfsprogs jq hstr ufw
source <(curl -sk https://git.service.wiseadvice.eu/wiseadvice_public_repos/wa_public_init_repo/raw/branch/main/common_lib.sh) source <(curl -sk https://git.service.wiseadvice.eu/wiseadvice_public_repos/wa_public_init_repo/raw/branch/main/common_lib.sh)
mainmenu() { what_to_do() {
echo -ne " echo -ne "
MAIN MENU MAIN MENU
1) Install K8s 1) Install K8s
@ -28,13 +30,12 @@ Choose an option: "
;; ;;
*) *)
echo "Wrong option." echo "Wrong option."
mainmenu what_to_do
;; ;;
esac esac
} }
init_repos what_to_do
mainmenu