2025-01-29 15:11:44 +01:00
#!/bin/bash
2025-01-29 20:09:22 +01:00
# ==========================================================
# 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)
2025-05-04 23:49:44 +02:00
# Version : 2.0
# Last Updated: 04/04/2025
2025-01-29 20:09:22 +01:00
# ==========================================================
2025-01-31 22:09:00 +01:00
# Configuration ============================================
2025-01-29 20:52:28 +01:00
REPO_URL = "https://raw.githubusercontent.com/MacRimi/ProxMenux/main"
2025-01-29 20:09:22 +01:00
BASE_DIR = "/usr/local/share/proxmenux"
2025-02-01 08:44:34 +01:00
UTILS_FILE = " $BASE_DIR /utils.sh "
2025-01-29 20:09:22 +01:00
VENV_PATH = "/opt/googletrans-env"
2025-08-14 17:58:59 +02:00
check_pve9_translation_compatibility( ) {
local pve_version
if command -v pveversion & >/dev/null; then
pve_version = $( pveversion 2>/dev/null | grep -oP 'pve-manager/\K[0-9]+' | head -1)
else
return 0
fi
if [ [ -n " $pve_version " ] ] && [ [ " $pve_version " -ge 9 ] ] && [ [ -d " $VENV_PATH " ] ] ; then
local has_googletrans = false
local has_cache = false
if [ [ -f " $VENV_PATH /bin/pip " ] ] ; then
if " $VENV_PATH /bin/pip " list 2>/dev/null | grep -q "googletrans" ; then
has_googletrans = true
fi
fi
if [ [ -f " $BASE_DIR /cache.json " ] ] ; then
has_cache = true
fi
if [ [ " $has_googletrans " = true ] ] || [ [ " $has_cache " = true ] ] ; then
dialog --clear \
--backtitle "ProxMenux - Compatibility Required" \
--title " Translation Environment Incompatible with PVE $pve_version " \
--msgbox " NOTICE: You are running Proxmox VE $pve_version with translation components installed.\n\nTranslations are NOT supported in PVE 9+. This causes:\n• Menu loading errors\n• Translation failures\n• System instability\n\nREQUIRED ACTION:\nProxMenux will now automatically reinstall the Normal Version.\n\nThis process will:\n• Remove incompatible translation components\n• Install PVE 9+ compatible version\n• Preserve all your settings and preferences\n\nPress OK to continue with automatic reinstallation... " 20 75
bash <( curl -sSL " $REPO_URL /install_proxmenux.sh " )
fi
exit
fi
}
check_pve9_translation_compatibility
# ==========================================================
2025-02-01 08:44:34 +01:00
if [ [ -f " $UTILS_FILE " ] ] ; then
source " $UTILS_FILE "
2025-01-29 20:09:22 +01:00
fi
2025-05-09 09:52:25 +02:00
if ! command -v dialog & >/dev/null; then
apt update -qq >/dev/null 2>& 1
apt install -y dialog >/dev/null 2>& 1
fi
2025-08-14 17:58:59 +02:00
if [ [ " $PROXMENUX_PVE9_WARNING_SHOWN " = "1" ] ] ; then
if ! load_language 2>/dev/null; then
LANGUAGE = "en"
fi
else
load_language
initialize_cache
fi
# ==========================================================
2025-01-29 22:17:21 +01:00
show_menu( ) {
2025-05-04 23:49:44 +02:00
local TEMP_FILE
TEMP_FILE = $( mktemp)
while true; do
2025-08-14 17:58:59 +02:00
local menu_title = "Main ProxMenux"
if [ [ -n " $PROXMENUX_PVE9_WARNING_SHOWN " ] ] ; then
menu_title = "Main ProxMenux"
fi
2025-05-04 23:49:44 +02:00
dialog --clear \
--backtitle "ProxMenux" \
2025-08-14 17:58:59 +02:00
--title " $( translate " $menu_title " ) " \
2025-06-10 12:45:17 +02:00
--menu " $( translate "Select an option:" ) " 20 70 10 \
2025-05-04 23:49:44 +02:00
1 " $( translate "Settings post-install Proxmox" ) " \
2 " $( translate "Help and Info Commands" ) " \
3 " $( translate "Hardware: GPUs and Coral-TPU" ) " \
4 " $( translate "Create VM from template or script" ) " \
5 " $( translate "Disk and Storage Manager" ) " \
2025-06-10 13:28:06 +02:00
6 " $( translate "Proxmox VE Helper Scripts" ) " \
2025-07-08 23:21:11 +02:00
7 " $( translate "Network Management" ) " \
2025-07-04 20:58:43 +02:00
8 " $( translate "Utilities and Tools" ) " \
2025-07-04 20:36:19 +02:00
9 " $( translate "Settings" ) " \
0 " $( translate "Exit" ) " 2>" $TEMP_FILE "
2025-05-04 23:49:44 +02:00
local EXIT_STATUS = $?
2025-02-25 19:01:50 +01:00
2025-05-04 23:49:44 +02:00
if [ [ $EXIT_STATUS -ne 0 ] ] ; then
clear
2025-08-02 12:02:10 +02:00
msg_ok " $( translate "Thank you for using ProxMenux. Goodbye!" ) "
2025-05-04 23:49:44 +02:00
rm -f " $TEMP_FILE "
exit 0
fi
OPTION = $( <" $TEMP_FILE " )
case $OPTION in
1) exec bash <( curl -s " $REPO_URL /scripts/menus/menu_post_install.sh " ) ; ;
2025-08-14 17:58:59 +02:00
2) exec bash <( curl -s " $REPO_URL /scripts/help_info_menu.sh " ) ; ;
2025-05-04 23:49:44 +02:00
3) exec bash <( curl -s " $REPO_URL /scripts/menus/hw_grafics_menu.sh " ) ; ;
4) exec bash <( curl -s " $REPO_URL /scripts/menus/create_vm_menu.sh " ) ; ;
5) exec bash <( curl -s " $REPO_URL /scripts/menus/storage_menu.sh " ) ; ;
6) exec bash <( curl -s " $REPO_URL /scripts/menus/menu_Helper_Scripts.sh " ) ; ;
2025-07-06 17:44:01 +02:00
7) exec bash <( curl -s " $REPO_URL /scripts/menus/network_menu.sh " ) ; ;
2025-07-04 20:36:19 +02:00
8) exec bash <( curl -s " $REPO_URL /scripts/menus/utilities_menu.sh " ) ; ;
9) exec bash <( curl -s " $REPO_URL /scripts/menus/config_menu.sh " ) ; ;
0) clear; msg_ok " $( translate "Thank you for using ProxMenu. Goodbye!" ) " ; rm -f " $TEMP_FILE " ; exit 0 ; ;
2025-05-04 23:49:44 +02:00
*) msg_warn " $( translate "Invalid option" ) " ; sleep 2 ; ;
esac
done
2025-01-29 22:17:21 +01:00
}
2025-08-14 17:58:59 +02:00
show_menu