Update pimox-haos-vm.sh

update pve_check
This commit is contained in:
tteckster 2023-04-26 05:38:40 -04:00 committed by GitHub
parent 70d51d964d
commit 513049c50b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -79,10 +79,10 @@ else
exit
fi
function PVE_CHECK() {
if [ $(pveversion | grep "pve-manager/7.2\|7.3" | wc -l) -ne 1 ]; then
echo "⚠ This version of Proxmox Virtual Environment is not supported"
echo "Requires PVE Version: =>7.2"
echo "Exiting..."
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 "Requires PVE Version 7.2 or higher"
echo -e "Exiting..."
sleep 2
exit
fi