tools/pve: expand PVE support to 9.0–9.1 (post-install & netdata) (#9298)

This commit is contained in:
CanbiZ
2025-11-20 13:01:01 +01:00
committed by GitHub
parent b314ba4bf1
commit fe3dab0ee1
2 changed files with 8 additions and 8 deletions

View File

@@ -88,14 +88,14 @@ main() {
fi
start_routines_8
elif [[ "$PVE_MAJOR" == "9" ]]; then
if ((PVE_MINOR != 0)); then
msg_error "Only Proxmox 9.0 is currently supported"
if ((PVE_MINOR < 0 || PVE_MINOR > 1)); then
msg_error "Only Proxmox 9.0-9.1.x is currently supported"
exit 1
fi
start_routines_9
else
msg_error "Unsupported Proxmox VE major version: $PVE_MAJOR"
echo -e "Supported: 8.08.9.x and 9.0"
echo -e "Supported: 8.08.9.x and 9.09.1.x"
exit 1
fi
}