update-pve.sh
· 163 B · Bash
Sin formato
#!/bin/bash
echo "Updating Proxmox VE (please wait)..."
apt update && apt full-upgrade -y && apt autoremove -y && apt autoclean
echo "Proxmox VE update complete."
| 1 | #!/bin/bash |
| 2 | echo "Updating Proxmox VE (please wait)..." |
| 3 | apt update && apt full-upgrade -y && apt autoremove -y && apt autoclean |
| 4 | echo "Proxmox VE update complete." |
| 5 |