From 1a876727af51c06f1365a1c20910fcf3c5f2f357 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 2 Jan 2023 20:18:51 -0500 Subject: [PATCH] Update haos-vm-v4.sh fix minimum PVE check --- vm/haos-vm-v4.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/vm/haos-vm-v4.sh b/vm/haos-vm-v4.sh index 6c321bfb..85e12e84 100644 --- a/vm/haos-vm-v4.sh +++ b/vm/haos-vm-v4.sh @@ -62,13 +62,15 @@ function cleanup() { } TEMP_DIR=$(mktemp -d) pushd $TEMP_DIR >/dev/null -if [ `pveversion | grep "pve-manager/7" | wc -l` -ne 1 ]; then +if [ `pveversion | grep "pve-manager/7.2" | wc -l` -ne 1 ]; then + if [ `pveversion | grep "pve-manager/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..." sleep 3 exit -fi + fi +fi if (whiptail --title "HOME ASSISTANT OS VM" --yesno "This will create a New Home Assistant OS VM. Proceed?" 10 58); then echo "User selected Yes" else