Sync all scripts to main

This commit is contained in:
eduard256
2026-04-16 17:51:19 +00:00
parent f6c80a2c72
commit 100149241c
2 changed files with 432 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/usr/bin/env bash
SCRIPT_URL="https://raw.githubusercontent.com/eduard256/Strix/main/scripts/proxmox.sh"
whiptail --title " Strix " --yesno "Run Strix installer?" 8 40 || { clear; exit 0; }
tmpfile=$(mktemp /tmp/strix-proxmox.XXXXXX)
curl -fsSL "$SCRIPT_URL" -o "$tmpfile" 2>/dev/null || { echo "Download failed"; exit 1; }
bash "$tmpfile"
rm -f "$tmpfile"