mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-17 19:16:25 +00:00
89 lines
3.2 KiB
Bash
89 lines
3.2 KiB
Bash
#!/bin/bash
|
|
# ==========================================================
|
|
# ProxMenux - Network Storage Manager Menu
|
|
# ==========================================================
|
|
# Author : MacRimi
|
|
# Copyright : (c) 2024 MacRimi
|
|
# License : MIT
|
|
# Version : 1.2
|
|
# Last Updated: $(date +%d/%m/%Y)
|
|
# ==========================================================
|
|
|
|
# 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=$(dialog --colors --backtitle "ProxMenux" \
|
|
--title "$(translate "Mount and Share Manager")" \
|
|
--menu "\n$(translate "Select an option:")" 25 80 15 \
|
|
"" "\Z4──────────────────────── $(translate "HOST") ─────────────────────────\Zn" \
|
|
"1" "$(translate "Configure NFS shared on Host")" \
|
|
"2" "$(translate "Configure Samba shared on Host")" \
|
|
"3" "$(translate "Configure Local Shared on Host")" \
|
|
"" "\Z4──────────────────────── $(translate "LXC") ─────────────────────────\Zn" \
|
|
"4" "$(translate "Configure LXC Mount Points (Host ↔ Container)")" \
|
|
"" "" \
|
|
"5" "$(translate "Configure NFS Client in LXC (only privileged)")" \
|
|
"6" "$(translate "Configure Samba Client in LXC (only privileged)")" \
|
|
"7" "$(translate "Configure NFS Server in LXC (only privileged)")" \
|
|
"8" "$(translate "configure Samba Server in LXC (only privileged)")" \
|
|
"" "" \
|
|
"h" "$(translate "Help & Info (commands)")" \
|
|
"0" "$(translate "Return to Main Menu")" \
|
|
2>&1 >/dev/tty
|
|
) || { exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh"; }
|
|
|
|
case "$OPTION" in
|
|
|
|
lxctitle|hosttitle)
|
|
continue
|
|
;;
|
|
|
|
1)
|
|
bash "$LOCAL_SCRIPTS/share/nfs_host.sh"
|
|
;;
|
|
2)
|
|
bash "$LOCAL_SCRIPTS/share/samba_host.sh"
|
|
;;
|
|
3)
|
|
bash "$LOCAL_SCRIPTS/share/local-shared-manager.sh"
|
|
;;
|
|
4)
|
|
bash "$LOCAL_SCRIPTS/share/lxc-mount-manager_minimal.sh"
|
|
;;
|
|
5)
|
|
bash "$LOCAL_SCRIPTS/share/nfs_client.sh"
|
|
;;
|
|
6)
|
|
bash "$LOCAL_SCRIPTS/share/samba_client.sh"
|
|
;;
|
|
7)
|
|
bash "$LOCAL_SCRIPTS/share/nfs_lxc_server.sh"
|
|
;;
|
|
8)
|
|
bash "$LOCAL_SCRIPTS/share/samba_lxc_server.sh"
|
|
;;
|
|
h)
|
|
bash "$LOCAL_SCRIPTS/share/commands_share.sh"
|
|
;;
|
|
0)
|
|
exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh"
|
|
;;
|
|
*)
|
|
exec bash "$LOCAL_SCRIPTS/menus/main_menu.sh"
|
|
;;
|
|
esac
|
|
done
|