diff --git a/files/proxmox/download-proxmox-essentials.sh b/files/proxmox/download-proxmox-essentials.sh new file mode 100644 index 0000000..94d56ae --- /dev/null +++ b/files/proxmox/download-proxmox-essentials.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +# remove older scripts +rm /root/proxmox-* + +# check for pbs directory +if [[ -d /etc/proxmox-backup ]] ; then + wget -O https://aknlw.com/proxmox-pbs-essentials /root/proxmox-pbs-essentials.sh +fi + +# check for pve directory +if [[ -d /etc/pve ]] ; then + wget -O https://aknlw.com/proxmox-pve-essentials /root/proxmox-pve-essentials.sh +fi