Compare commits

..

No commits in common. "3624b67302001f29d7284e7ee9cd87412caf4134" and "4c8a31f48547ccea08dee58675fd91b83092c096" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

@ -179,13 +179,4 @@ if ! command -v pveversion >/dev/null 2>&1; then
exit exit
fi fi
if ! pveversion | grep -Eq "pve-manager/(7\.4-(13|14|15|16))"; then
header_info
msg_error "This version of Proxmox Virtual Environment is not supported"
echo -e " PVE Version 7.4-13 or higher is required."
echo -e "\nExiting..."
sleep 3
exit
fi
start_routines start_routines

View File

@ -157,7 +157,7 @@ function msg_error() {
} }
function pve_check() { function pve_check() {
if ! pveversion | grep -Eq "pve-manager/(7\.[2-9]|8\.[0-9])"; then if [ $(pveversion | grep -c "pve-manager/7\.[2-9]") -eq 0 ]; then
echo -e "${CROSS} This version of Proxmox Virtual Environment is not supported" echo -e "${CROSS} This version of Proxmox Virtual Environment is not supported"
echo -e "Requires PVE Version 7.2 or higher" echo -e "Requires PVE Version 7.2 or higher"
echo -e "Exiting..." echo -e "Exiting..."