mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-27 20:06:52 +00:00
52 lines
1.6 KiB
Bash
52 lines
1.6 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.0
|
|
# Last Updated: 28/01/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=$(whiptail --title "$(translate "Network Menu")" --menu "$(translate "Select an option:")" 15 60 2 \
|
|
"1" "$(translate "Repair Network")" \
|
|
"2" "$(translate "Return to Main Menu")" 3>&1 1>&2 2>&3)
|
|
|
|
case $OPTION in
|
|
1)
|
|
msg_info2 "$(translate "Running network repair...")"
|
|
if bash <(curl -s "$REPO_URL/scripts/repair_network.sh"); then
|
|
msg_ok "$(translate "Network repair completed.")"
|
|
else
|
|
msg_error "$(translate "Error in network repair.")"
|
|
fi
|
|
;;
|
|
2)
|
|
return
|
|
;;
|
|
*)
|
|
msg_warn "$(translate "Invalid option.")"
|
|
sleep 2
|
|
;;
|
|
esac
|
|
done
|