From 2f9cc3676ffa65091260538d8cbcd0e3660103ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Janata?= Date: Sun, 28 Apr 2024 20:45:17 +0200 Subject: [PATCH] Update setup to support Proxmox 8.2 --- setup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup b/setup index ae9587f..a983bc5 100755 --- a/setup +++ b/setup @@ -36,7 +36,7 @@ clear if [ `pveversion | grep "pve-manager/[7,8]" | wc -l` -ne 1 ] then echo "This version of Proxmox Virtual Environment are not supported" - echo "Please, utilize version: 7.XX or 8.1-1" + echo "Please, utilize version: 7.XX or 8.2" exit fi @@ -108,7 +108,7 @@ then if [ ${OSX_PLATFORM} == "AMD" ] then - if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1' | wc -l` -eq 1 ] + if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1\|8.2' | wc -l` -eq 1 ] then sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet amd_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub else @@ -119,7 +119,7 @@ then if [ ${OSX_PLATFORM} == "INTEL" ] then - if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1' | wc -l` -eq 1 ] + if [ `pveversion | grep -i '7.2\|7.3\|7.4\|8.0\|8.1\|8.2' | wc -l` -eq 1 ] then sed -i 's/GRUB_CMDLINE_LINUX_DEFAULT="quiet"/GRUB_CMDLINE_LINUX_DEFAULT="quiet intel_iommu=on iommu=pt video=vesafb:off video=efifb:off initcall_blacklist=sysfb_init"/g' /etc/default/grub else