mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
58 lines
2.0 KiB
Bash
58 lines
2.0 KiB
Bash
#!/bin/bash
|
|
|
|
# ==========================================================
|
|
# ProxMenu - A menu-driven script for Proxmox VE management
|
|
# ==========================================================
|
|
# Author : MacRimi
|
|
# Copyright : (c) 2024 MacRimi
|
|
# License : MIT (https://raw.githubusercontent.com/MacRimi/ProxMenux/main/LICENSE)
|
|
# Version : 1.1
|
|
# Last Updated: 15/04/2025
|
|
# ==========================================================
|
|
|
|
|
|
# Configuration ============================================
|
|
REPO_URL="https://raw.githubusercontent.com/MacRimi/ProxMenux/main"
|
|
BASE_DIR="/usr/local/share/proxmenux"
|
|
UTILS_FILE="$BASE_DIR/utils.sh"
|
|
VENV_PATH="/opt/googletrans-env"
|
|
|
|
if [[ -f "$UTILS_FILE" ]]; then
|
|
source "$UTILS_FILE"
|
|
fi
|
|
load_language
|
|
initialize_cache
|
|
# ==========================================================
|
|
|
|
|
|
while true; do
|
|
OPTION=$(dialog --clear --backtitle "ProxMenux" --title "$(translate "Disk and Storage Manager Menu")" \
|
|
--menu "\n$(translate "Select an option:")" 20 70 10 \
|
|
"1" "$(translate "Add Disk Passthrough to a VM")" \
|
|
"2" "$(translate "Add Disk") Passthrough $(translate "to a LXC")" \
|
|
"3" "$(translate "Import Disk Image to a VM")" \
|
|
"4" "$(translate "Return to Main Menu")" \
|
|
2>&1 >/dev/tty) # Redirect dialog output to stderr, and then capture it
|
|
|
|
case $OPTION in
|
|
1)
|
|
clear
|
|
bash <(curl -s "$REPO_URL/scripts/storage/disk-passthrough.sh")
|
|
;;
|
|
2)
|
|
clear
|
|
bash <(curl -s "$REPO_URL/scripts/storage/disk-passthrough_ct.sh")
|
|
;;
|
|
3)
|
|
clear
|
|
bash <(curl -s "$REPO_URL/scripts/storage/import-disk-image.sh")
|
|
;;
|
|
4)
|
|
exec bash <(curl -s "$REPO_URL/scripts/menus/main_menu.sh")
|
|
;;
|
|
*)
|
|
exec bash <(curl -s "$REPO_URL/scripts/menus/main_menu.sh")
|
|
;;
|
|
esac
|
|
done
|