diff --git a/files/proxmox/download-proxmox-essentials.sh b/files/proxmox/download-proxmox-essentials.sh index 368bc35..3532b06 100644 --- a/files/proxmox/download-proxmox-essentials.sh +++ b/files/proxmox/download-proxmox-essentials.sh @@ -5,12 +5,16 @@ rm /root/proxmox-* # check for pbs directory if [[ -d /etc/proxmox-backup ]] ; then - wget -O /root/proxmox-pbs-essentials.sh https://aknlw.com/proxmox-pbs-essentials - chmod +x /root/proxmox-pbs-essentials.sh + wget -O /root/proxmox-pbs-essentials.sh https://aknlw.com/proxmox-pbs-essentials + wget -O /root/proxmox-post-pbs-install.sh https://aknlw.com/proxmox-post-pbs-install + wget -O /root/proxmox-kernel-clean.sh https://aknlw.com/proxmox-kernel-clean + chmod +x proxmox-*.sh fi # check for pve directory if [[ -d /etc/pve ]] ; then - wget -O /root/proxmox-pve-essentials.sh https://aknlw.com/proxmox-pve-essentials - chmod +x /root/proxmox-pve-essentials.sh + wget -O /root/proxmox-pve-essentials.sh https://aknlw.com/proxmox-pve-essentials + wget -O /root/proxmox-post-pve-install.sh https://aknlw.com/proxmox-post-pve-install + wget -O /root/proxmox-kernel-clean.sh https://aknlw.com/proxmox-kernel-clean + chmod +x /root/proxmox-*.sh fi diff --git a/files/proxmox/proxmox-pbs-essentials.sh b/files/proxmox/proxmox-pbs-essentials.sh index 9e9f97a..01eb450 100755 --- a/files/proxmox/proxmox-pbs-essentials.sh +++ b/files/proxmox/proxmox-pbs-essentials.sh @@ -65,7 +65,3 @@ git config --global credential.helper store git config --global user.name "akanealw" git config --global user.email "akanealw@gmail.com" git config --global init.defaultBranch main - -# download scripts -wget https://aknlw.com/proxmox-post-pbs-install -chmod +x proxmox-post-pbs-install diff --git a/files/proxmox/proxmox-pve-essentials.sh b/files/proxmox/proxmox-pve-essentials.sh index 79d61bc..409b7f9 100644 --- a/files/proxmox/proxmox-pve-essentials.sh +++ b/files/proxmox/proxmox-pve-essentials.sh @@ -71,9 +71,3 @@ git config --global credential.helper store git config --global user.name "akanealw" git config --global user.email "akanealw@gmail.com" git config --global init.defaultBranch main - -# download scripts -wget https://aknlw.com/proxmox-post-pve-install -wget https://aknlw.com/proxmox-kernel-clean -chmod +x proxmox-post-pve-install -chmod +x proxmox-kernel-clean