mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "0d5754de1249cc509087863bb1db22f448993c63" and "72f3648730de3db97a0b564942b80321d85a0222" have entirely different histories.
0d5754de12
...
72f3648730
|
@ -143,20 +143,9 @@ advanced_settings() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$var_os" == "debian" ]; then
|
if [ "$var_os" == "debian" ]; then
|
||||||
var_version=""
|
var_version="11"
|
||||||
while [ -z "$var_version" ]; do
|
|
||||||
if var_version=$(whiptail --title "DEBIAN VERSION" --radiolist "Choose Version" 10 58 2 \
|
|
||||||
"11" "Bullseye" OFF \
|
|
||||||
"12" "Bookworm" OFF \
|
|
||||||
3>&1 1>&2 2>&3); then
|
|
||||||
if [ -n "$var_version" ]; then
|
|
||||||
echo -e "${DGN}Using $var_os Version: ${BGN}$var_version${CL}"
|
echo -e "${DGN}Using $var_os Version: ${BGN}$var_version${CL}"
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
exit-script
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$var_os" == "ubuntu" ]; then
|
if [ "$var_os" == "ubuntu" ]; then
|
||||||
var_version=""
|
var_version=""
|
||||||
|
|
|
@ -138,7 +138,7 @@ EOF
|
||||||
yes)
|
yes)
|
||||||
msg_info "Updating to Proxmox VE 8 (Patience)"
|
msg_info "Updating to Proxmox VE 8 (Patience)"
|
||||||
apt-get update
|
apt-get update
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confold" dist-upgrade -y
|
apt-get -y dist-upgrade
|
||||||
msg_ok "Updated to Proxmox VE 8"
|
msg_ok "Updated to Proxmox VE 8"
|
||||||
;;
|
;;
|
||||||
no)
|
no)
|
||||||
|
|
Loading…
Reference in New Issue