Bump PVE version to 8.4

This commit is contained in:
tremor021 2025-04-10 00:09:07 +02:00
parent f9ccc2c5db
commit fc5eb86b52

View File

@ -483,17 +483,17 @@ if check_service_exists; then
while true; do while true; do
read -p "IP-Tag service is already installed. Do you want to update it? (y/n): " yn read -p "IP-Tag service is already installed. Do you want to update it? (y/n): " yn
case $yn in case $yn in
[Yy]*) [Yy]*)
update_installation update_installation
exit 0 exit 0
;; ;;
[Nn]*) [Nn]*)
msg_error "Installation cancelled." msg_error "Installation cancelled."
exit 0 exit 0
;; ;;
*) *)
msg_error "Please answer yes or no." msg_error "Please answer yes or no."
;; ;;
esac esac
done done
fi fi
@ -501,20 +501,20 @@ fi
while true; do while true; do
read -p "This will install ${APP} on ${hostname}. Proceed? (y/n): " yn read -p "This will install ${APP} on ${hostname}. Proceed? (y/n): " yn
case $yn in case $yn in
[Yy]*) [Yy]*)
break break
;; ;;
[Nn]*) [Nn]*)
msg_error "Installation cancelled." msg_error "Installation cancelled."
exit exit
;; ;;
*) *)
msg_error "Please answer yes or no." msg_error "Please answer yes or no."
;; ;;
esac esac
done done
if ! pveversion | grep -Eq "pve-manager/8\.[0-3](\.[0-9]+)*"; then if ! pveversion | grep -Eq "pve-manager/8\.[0-4](\.[0-9]+)*"; then
msg_error "This version of Proxmox Virtual Environment is not supported" msg_error "This version of Proxmox Virtual Environment is not supported"
msg_error "⚠️ Requires Proxmox Virtual Environment Version 8.0 or later." msg_error "⚠️ Requires Proxmox Virtual Environment Version 8.0 or later."
msg_error "Exiting..." msg_error "Exiting..."