This commit is contained in:
2026-03-06 23:14:31 -06:00
parent f77e5df87f
commit ddfec2f1f1
2 changed files with 7 additions and 15 deletions

View File

@@ -1,13 +1,12 @@
#!/usr/bin/env bash
# TA-Proxmenu - Proxmox Scripts for TA Use
# TA-Proxmenu - Proxmox Setup Scripts for TA Use
action="$1"
FOLDER='/opt/idssys/ta-proxmenu'
VERS='2026.3.14'
VERS='2026.3.15'
RNIP=$(ip addr show $(ip route | awk '/default/ { print $5 }') | grep "inet" | head -n 1 | awk '/inet/ {print $2}' | cut -d'/' -f1)
url="https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso"
while redirect_url=$( curl -I -s -S -f -w "%{redirect_url}\\n" -o /dev/null "${url}" ); do
VIRTIO_DOWNLOAD_URL=${url}; url=${redirect_url}; [[ -z "$url" ]] && break