mirror of https://github.com/tteck/Proxmox.git
Compare commits
2 Commits
4c8a31f485
...
3624b67302
Author | SHA1 | Date |
---|---|---|
|
3624b67302 | |
|
f1319f44fe |
|
@ -179,4 +179,13 @@ 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
|
||||||
|
|
|
@ -157,7 +157,7 @@ function msg_error() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function pve_check() {
|
function pve_check() {
|
||||||
if [ $(pveversion | grep -c "pve-manager/7\.[2-9]") -eq 0 ]; then
|
if ! pveversion | grep -Eq "pve-manager/(7\.[2-9]|8\.[0-9])"; 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..."
|
||||||
|
|
Loading…
Reference in New Issue