mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2026-04-18 01:52:20 +00:00
Update repository and clean up
This commit is contained in:
@@ -35,13 +35,13 @@ initialize_cache
|
||||
|
||||
case $OPTION in
|
||||
1)
|
||||
bash "$LOCAL_SCRIPTS/configure_igpu_lxc.sh"
|
||||
bash "$LOCAL_SCRIPTS/gpu_tpu/configure_igpu_lxc.sh"
|
||||
if [ $? -ne 0 ]; then
|
||||
return
|
||||
fi
|
||||
;;
|
||||
2)
|
||||
bash "$LOCAL_SCRIPTS/install_coral_lxc.sh"
|
||||
bash "$LOCAL_SCRIPTS/gpu_tpu/install_coral_lxc.sh"
|
||||
if [ $? -ne 0 ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# ==========================================================
|
||||
# ProxMenux - A menu-driven script for Proxmox VE management
|
||||
# ==========================================================
|
||||
# Author : MacRimi
|
||||
# Copyright : (c) 2024 MacRimi
|
||||
# License : (GPL-3.0) (https://github.com/MacRimi/ProxMenux/blob/main/LICENSE)
|
||||
# Version : 1.0
|
||||
# Last Updated: 28/01/2025
|
||||
# ==========================================================
|
||||
|
||||
|
||||
# Configuration ============================================
|
||||
LOCAL_SCRIPTS="/usr/local/share/proxmenux/scripts"
|
||||
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 "Disk and Storage Manager Menu")" --menu "$(translate "Select an option:")" 20 70 10 \
|
||||
"1" "$(translate "Add Disk Passthrough to a VM")" \
|
||||
"2" "$(translate "Add Disk") Passthrough $(translate "to a CT")" \
|
||||
"3" "$(translate "Import Disk Image to a VM")" \
|
||||
"4" "$(translate "Mount point to CT")" \
|
||||
"5" "$(translate "Mount disk on HOST")" \
|
||||
"6" "$(translate "Unmount disk from HOST")" \
|
||||
"7" "$(translate "Format disk")" \
|
||||
"8" "$(translate "Return to Main Menu")" 3>&1 1>&2 2>&3)
|
||||
|
||||
case $OPTION in
|
||||
1)
|
||||
msg_info2 "$(translate "Running script: Add Disk Passthrough to a VM")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/disk-passthrough.sh"
|
||||
;;
|
||||
2)
|
||||
msg_info2 "$(translate "Running script: Add Disk Passthrough to a CT")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/disk-passthrough_ct.sh"
|
||||
;;
|
||||
3)
|
||||
msg_info2 "$(translate "Running script: Import Disk Image to a VM")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/import-disk-image.sh"
|
||||
;;
|
||||
4)
|
||||
msg_info2 "$(translate "Running script: Mount point to CT")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/mount-point-to-ct.sh"
|
||||
;;
|
||||
5)
|
||||
msg_info2 "$(translate "Running script: Mount disk on HOST")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/mount-disk-on-host.sh"
|
||||
;;
|
||||
6)
|
||||
msg_info2 "$(translate "Running script: Unmount disk from HOST")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/unmount-disk-from-host.sh"
|
||||
;;
|
||||
7)
|
||||
msg_info2 "$(translate "Running script: Format disk")..."
|
||||
bash "$LOCAL_SCRIPTS/storage/format-disk.sh"
|
||||
;;
|
||||
8)
|
||||
exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh"
|
||||
;;
|
||||
*)
|
||||
exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
Reference in New Issue
Block a user