From e387388c87bd013b8cda691fdcbcafd4745da8d0 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 7 Jan 2023 23:47:08 -0500 Subject: [PATCH] Update ubuntu-v5.sh --- ct/ubuntu-v5.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/ubuntu-v5.sh b/ct/ubuntu-v5.sh index bcbc59a0..5433958e 100644 --- a/ct/ubuntu-v5.sh +++ b/ct/ubuntu-v5.sh @@ -130,7 +130,7 @@ function default_settings() { echo -e "${BL}Creating a ${APP} LXC using the above default settings${CL}" } function advanced_settings() { - var_version=$(whiptail --title "UBUNTU VERSION" --radiolist "Choose Version" 10 58 4 \ + var_version=$(whiptail --title "UBUNTU VERSION" --radiolist "Choose Version" 11 58 4 \ "18.04" "Bionic" OFF \ "20.04" "Focal" OFF \ "22.04" "Jammy" ON \ @@ -138,7 +138,7 @@ function advanced_settings() { 3>&1 1>&2 2>&3) exitstatus=$? if [ $exitstatus = 0 ]; then echo -e "${DGN}Using Ubuntu Version: ${BGN}$var_version${CL}"; fi - CT_TYPE=$(whiptail --title "CONTAINER TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 8 58 2 \ + CT_TYPE=$(whiptail --title "CONTAINER TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 10 58 2 \ "1" "Unprivileged" ON \ "0" "Privileged" OFF \ 3>&1 1>&2 2>&3)