Compare commits

..

No commits in common. "5569d7039883b82af5b444be1d5acfa24efe9487" and "70d51d964df90b425c9ed5da66ae723c19c83cb6" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ motd_ssh
root
msg_info "Cleaning up"
rm -f Omada_SDN_Controller_v5.9.31_Linux_x64.deb mongodb-org-server_3.6.23_amd64.deb
rm -rf Omada_SDN_Controller_v5.9.9_Linux_x64.deb mongodb-org-server_3.6.23_amd64.deb
$STD apt-get autoremove
$STD apt-get autoclean
msg_ok "Cleaned"

View File

@ -79,10 +79,10 @@ else
exit
fi
function PVE_CHECK() {
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..."
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..."
sleep 2
exit
fi