Issues running PVE Post Install scripts on 8.3
I had the same issue. download the script:
wget https://github.com/tteck/Proxmox/raw/main/misc/post-pve-install.sh
make it executable:
chmod 777 post-pve-install.sh
edit the script:
nano post-pve-install.sh
scroll down and change the line that says
if ! pveversion | grep -Eq "pve-manager/8.[0-2]"; then
change the [0-2] to [0-3]
if ! pveversion | grep -Eq "pve-manager/8.[0-3]"; then
exit with <ctrl> x and save it
run the file with
./post-pve-install.sh
site: https://www.reddit.com/r/Proxmox/comments/1gxd9nj/issues_running_pve_post_install_scripts_on_83/
评论
发表评论