From 4ae3b9cb08a5df88323fda4fee53a517594c2020 Mon Sep 17 00:00:00 2001 From: akanealw Date: Sat, 19 Apr 2025 10:50:39 -0500 Subject: [PATCH] fixed urls --- proxmox/download-proxmox-essentials.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/proxmox/download-proxmox-essentials.sh b/proxmox/download-proxmox-essentials.sh index b3071a0..2bafa46 100755 --- a/proxmox/download-proxmox-essentials.sh +++ b/proxmox/download-proxmox-essentials.sh @@ -9,18 +9,18 @@ rm /root/scripts/proxmox-* > /dev/null 2>&1 # check for pve directory if [[ -d /etc/pve ]] ; then - wget -qO /root/scripts/proxmox-pve-essentials.sh https://scripts.akanealw.com/proxmox/proxmox-pve-essentials.sh - wget -qO /root/scripts/proxmox-post-pve-install.sh https://scripts.akanealw.com/proxmox/proxmox-post-pve-install.sh - wget -qO /root/scripts/proxmox-kernel-clean.sh https://scripts.akanealw.com/proxmox/proxmox-kernel-clean.sh + wget -qO /root/scripts/proxmox-pve-essentials.sh http://192.168.1.50/scripts/proxmox/proxmox-pve-essentials.sh + wget -qO /root/scripts/proxmox-post-pve-install.sh http://192.168.1.50/scripts/proxmox/proxmox-post-pve-install.sh + wget -qO /root/scripts/proxmox-kernel-clean.sh http://192.168.1.50/scripts/proxmox/proxmox-kernel-clean.sh chmod +x /root/scripts/proxmox-*.sh /root/scripts/proxmox-pve-essentials.sh fi # check for pbs directory if [[ -d /etc/proxmox-backup ]] ; then - wget -qO /root/scripts/proxmox-pbs-essentials.sh https://scripts.akanealw.com/proxmox/proxmox-pbs-essentials.sh - wget -qO /root/scripts/proxmox-post-pbs-install.sh https://scripts.akanealw.com/proxmox/proxmox-post-pbs-install.sh - wget -qO /root/scripts/proxmox-kernel-clean.sh https://scripts.akanealw.com/proxmox/proxmox-kernel-clean.sh + wget -qO /root/scripts/proxmox-pbs-essentials.sh http://192.168.1.50/scripts/proxmox/proxmox-pbs-essentials.sh + wget -qO /root/scripts/proxmox-post-pbs-install.sh http://192.168.1.50/scripts/proxmox/proxmox-post-pbs-install.sh + wget -qO /root/scripts/proxmox-kernel-clean.sh http://192.168.1.50/scripts/proxmox/proxmox-kernel-clean.sh chmod +x /root/scripts/proxmox-*.sh /root/scripts/proxmox-pbs-essentials.sh fi