update 1.2.2.3 beta

This commit is contained in:
MacRimi
2026-07-12 12:52:16 +02:00
parent aa3714c2ed
commit f5c72f19b8
3 changed files with 87 additions and 26 deletions

View File

@@ -3793,42 +3793,103 @@ restore_menu() {
done done
} }
# ==========================================================
# COMMUNITY SCRIPTS LAUNCHERS
# ==========================================================
_bk_format_menu_item() {
local description="$1"
local source="$2"
local total_width=61
local spaces_needed=$((total_width - ${#description} - ${#source}))
[[ $spaces_needed -lt 3 ]] && spaces_needed=3
printf '%s%*s%s' "$description" "$spaces_needed" "" "$source"
}
_bk_community_launcher() {
local title="$1" author="$2" repo_url="$3" run_cmd="$4"
local body
body="\n$(translate "This is an external community script maintained by") ${author}.\n\n"
body+="$(translate "For any question, issue or bug report, please use the official repository"):\n"
body+="${repo_url}\n\n"
body+="$(translate "Consider visiting the repository and supporting the project.")\n\n"
body+="$(translate "ProxMenux only acts as a launcher — once the script starts, control leaves ProxMenux.")\n\n"
body+="$(translate "Do you want to run the script now?")"
dialog --backtitle "ProxMenux" --title "$title" --yesno "$body" 20 78
if [[ $? -eq 0 ]]; then
clear
eval "$run_cmd"
fi
}
_bk_community_pve_host_backup() {
_bk_community_launcher \
"PVE Host Backup — Helper-Scripts" \
"Helper-Scripts (community-scripts)" \
"https://github.com/community-scripts/ProxmoxVE" \
'bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/tools/pve/host-backup.sh)"'
}
_bk_community_proxmox_toolbox() {
_bk_community_launcher \
"proxmox_toolbox — Tontonjo" \
"Tontonjo" \
"https://github.com/Tontonjo/proxmox_toolbox" \
'bash <(wget -qO- https://raw.githubusercontent.com/Tontonjo/proxmox_toolbox/main/proxmox_toolbox.sh)'
}
_bk_community_proxsave() {
_bk_community_launcher \
"proxsave — tis24dev" \
"tis24dev" \
"https://github.com/tis24dev/proxsave" \
'bash -c "$(curl -fsSL https://raw.githubusercontent.com/tis24dev/proxsave/main/install.sh)"'
}
# ========================================================== # ==========================================================
# MAIN MENU # MAIN MENU
# ========================================================== # ==========================================================
main_menu() { main_menu() {
while true; do while true; do
local choice local choice
choice=$(dialog --backtitle "ProxMenux" \
choice=$(dialog --colors --backtitle "ProxMenux" \
--title "$(translate "Host Config Backup / Restore")" \ --title "$(translate "Host Config Backup / Restore")" \
--menu "\n$(translate "Select operation:")" \ --menu "\n$(translate "Select operation:")" \
"$HB_UI_MENU_H" "$HB_UI_MENU_W" "$HB_UI_MENU_LIST" \ 24 84 16 \
1 "$(translate "Backup host configuration")" \ 1 "$(_bk_format_menu_item "$(translate "Backup host configuration")" "")" \
2 "$(translate "Restore host configuration")" \ 2 "$(_bk_format_menu_item "$(translate "Restore host configuration")" "")" \
"" " " \ "" " " \
"" "$(translate "─────────────────────── Backup settings ───────────────────────")" \ 3 "$(_bk_format_menu_item "$(translate "Manage custom paths (add / remove your folders)")" "")" \
4 "$(_bk_format_menu_item "$(translate "Scheduled backups and retention policies")" "")" \
5 "$(_bk_format_menu_item "$(translate "Configure backup destinations (PBS, Borg, local)")" "")" \
"" " " \ "" " " \
3 "$(translate "Manage custom paths (add / remove your folders)")" \ "" "\Z4───────────────────── Community Scripts ─────────────────────\Z4" \
4 "$(translate "Scheduled backups and retention policies")" \ 6 "$(_bk_format_menu_item "PVE Host Backup" "Helper-Scripts")" \
5 "$(translate "Configure backup destinations (PBS, Borg, local)")" \ 7 "$(_bk_format_menu_item "proxmox_toolbox" "Tontonjo")" \
8 "$(_bk_format_menu_item "proxsave" "tis24dev")" \
"" " " \ "" " " \
0 "$(translate "Return")" \ 0 "$(_bk_format_menu_item "$(translate "Return")" "")" \
3>&1 1>&2 2>&3) || break 3>&1 1>&2 2>&3) || break
case "$choice" in case "$choice" in
1) backup_menu ;; 1) backup_menu ;;
2) restore_menu ;; 2) restore_menu ;;
3) _bk_manage_extra_paths ;; 3) _bk_manage_extra_paths ;;
4) _bk_scheduler ;; 4) _bk_scheduler ;;
5) _bk_manage_destinations ;; 5) _bk_manage_destinations ;;
6) _bk_community_pve_host_backup ;;
7) _bk_community_proxmox_toolbox ;;
8) _bk_community_proxsave ;;
0) break ;; 0) break ;;
esac esac
done done
} }
# Only spawn the TUI when invoked directly. Sourcing the file
# (e.g. from restore/monitor_apply.sh) imports all the functions
# without triggering the main menu.
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
main_menu main_menu
fi fi

View File

@@ -64,7 +64,7 @@ function select_linux_iso() {
--menu "\nSeleccione el tipo de instalación de Linux:\n\n$header" \ --menu "\nSeleccione el tipo de instalación de Linux:\n\n$header" \
20 70 10 \ 20 70 10 \
1 "$(printf '%-35s│ %s' 'Instalar con metodo tradicional' 'Desde ISO oficial')" \ 1 "$(printf '%-35s│ %s' 'Instalar con metodo tradicional' 'Desde ISO oficial')" \
2 "$(printf '%-35s│ %s' 'Instalar con script Cloud-Init' 'Helper Scripts')" \ 2 "$(printf '%-35s│ %s' 'Instalar con script Cloud-Init' 'Helper-Scripts')" \
3 "$(printf '%-35s│ %s' 'Instalar con ISO personal' 'Almacenamiento ISO')" \ 3 "$(printf '%-35s│ %s' 'Instalar con ISO personal' 'Almacenamiento ISO')" \
4 "Volver al menú principal" \ 4 "Volver al menú principal" \
3>&1 1>&2 2>&3) 3>&1 1>&2 2>&3)
@@ -171,13 +171,13 @@ function select_linux_iso_official() {
function select_linux_cloudinit() { function select_linux_cloudinit() {
local CLOUDINIT_OPTIONS=( local CLOUDINIT_OPTIONS=(
"1" "Arch Linux (Cloud-Init automated) │ Helper Scripts" "1" "Arch Linux (Cloud-Init automated) │ Helper-Scripts"
"2" "Debian 13 (Cloud-Init automated) │ Helper Scripts" "2" "Debian 13 (Cloud-Init automated) │ Helper-Scripts"
"3" "Debian 12 (Cloud-Init automated) │ Helper Scripts" "3" "Debian 12 (Cloud-Init automated) │ Helper-Scripts"
"4" "Ubuntu 22.04 (Cloud-Init automated) │ Helper Scripts" "4" "Ubuntu 22.04 (Cloud-Init automated) │ Helper-Scripts"
"5" "Ubuntu 24.04 (Cloud-Init automated) │ Helper Scripts" "5" "Ubuntu 24.04 (Cloud-Init automated) │ Helper-Scripts"
"6" "Ubuntu 24.10 (Cloud-Init automated) │ Helper Scripts" "6" "Ubuntu 24.10 (Cloud-Init automated) │ Helper-Scripts"
"7" "Ubuntu 25.04 (Cloud-Init automated) │ Helper Scripts" "7" "Ubuntu 25.04 (Cloud-Init automated) │ Helper-Scripts"
"8" "$(translate "Return to Main Menu")" "8" "$(translate "Return to Main Menu")"
) )
@@ -278,9 +278,9 @@ function select_linux_custom_iso() {
function select_linux_other_scripts() { function select_linux_other_scripts() {
local OTHER_OPTIONS=( local OTHER_OPTIONS=(
"1" "Home Assistant OS VM (HAOS) │ Helper Scripts" "1" "Home Assistant OS VM (HAOS) │ Helper-Scripts"
"2" "Docker VM (Debian + SSH + Docker) │ Helper Scripts" "2" "Docker VM (Debian + SSH + Docker) │ Helper-Scripts"
"3" "Nextcloud │ Helper Scripts" "3" "Nextcloud │ Helper-Scripts"
"4" "$(translate "Return to Main Menu")" "4" "$(translate "Return to Main Menu")"
) )

View File

@@ -191,7 +191,7 @@ function select_nas_iso() {
"" "" "" ""
"" "\Z4───────────────── Community Scripts ─────────────────\Zn" "" "\Z4───────────────── Community Scripts ─────────────────\Zn"
"" "" "" ""
"8" "Umbrel OS VM (Helper Scripts)" "8" "Umbrel OS VM (Helper-Scripts)"
"9" "$(translate "Return to Main Menu")" "9" "$(translate "Return to Main Menu")"
) )