mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-27 20:06:52 +00:00
Update disk-passthrough.sh
This commit is contained in:
parent
117745cb05
commit
7959e2bacc
@ -9,315 +9,249 @@
|
||||
# Version : 1.0
|
||||
# Last Updated: 28/01/2025
|
||||
# ==========================================================
|
||||
# Description:
|
||||
# This script allows users to assign physical disks for passthrough to existing
|
||||
# Proxmox virtual machines (VMs) through an interactive menu.
|
||||
# - Detects the system disk and excludes it from selection.
|
||||
# - Lists all available VMs for the user to choose from.
|
||||
# - Identifies and displays unassigned physical disks.
|
||||
# - Allows the user to select multiple disks and attach them to a VM.
|
||||
# - Supports interface types: SATA, SCSI, VirtIO, and IDE.
|
||||
# - Ensures that disks are not already assigned to active VMs.
|
||||
# - Warns about disk sharing between multiple VMs to avoid data corruption.
|
||||
# - Configures the selected disks for the VM and verifies the assignment.
|
||||
#
|
||||
# The goal of this script is to simplify the process of assigning
|
||||
# physical disks to Proxmox VMs, reducing manual configurations
|
||||
# and preventing potential errors.
|
||||
# ==========================================================
|
||||
|
||||
# Configuración de traducción
|
||||
|
||||
# Configuration ============================================
|
||||
UTILS_URL="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/scripts/utils.sh"
|
||||
BASE_DIR="/usr/local/share/proxmenux"
|
||||
CACHE_FILE="$BASE_DIR/cache.json"
|
||||
VENV_PATH="/opt/googletrans-env" # Ruta del entorno virtual
|
||||
CONFIG_FILE="$BASE_DIR/config.json"
|
||||
VENV_PATH="/opt/googletrans-env"
|
||||
|
||||
# Detectar el idioma seleccionado en el menú principal
|
||||
LANGUAGE=$(jq -r '.language' "$BASE_DIR/config.json" 2>/dev/null || echo "en")
|
||||
if ! source <(curl -sSf "$UTILS_URL"); then
|
||||
echo "$(translate 'Error: Could not load utils.sh from') $UTILS_URL"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Crear directorios necesarios
|
||||
mkdir -p "$BASE_DIR"
|
||||
load_language
|
||||
initialize_cache
|
||||
# ==========================================================
|
||||
|
||||
# Colores y estilos
|
||||
YW="\033[33m"
|
||||
YWB="\033[1;33m"
|
||||
GN="\033[1;92m"
|
||||
RD="\033[01;31m"
|
||||
CL="\033[m"
|
||||
BFR="\\r\\033[K"
|
||||
HOLD="-"
|
||||
CM="${GN}✓${CL}"
|
||||
TAB=" "
|
||||
|
||||
# Crear y mostrar spinner.
|
||||
spinner() {
|
||||
local frames=('⠋' '⠙' '⠹' '⠸' '⠼' '⠴' '⠦' '⠧' '⠇' '⠏')
|
||||
local spin_i=0
|
||||
local interval=0.1
|
||||
printf "\e[?25l"
|
||||
|
||||
local color="${YWB}"
|
||||
|
||||
while true; do
|
||||
printf "\r ${color}%s${CL}" "${frames[spin_i]}"
|
||||
spin_i=$(( (spin_i + 1) % ${#frames[@]} ))
|
||||
sleep "$interval"
|
||||
done
|
||||
}
|
||||
|
||||
# Mostrar mensaje spiner.
|
||||
msg_info() {
|
||||
local msg="$1"
|
||||
echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}"
|
||||
spinner &
|
||||
SPINNER_PID=$!
|
||||
}
|
||||
|
||||
# Mostrar mensaje de proceso realizado .
|
||||
msg_ok() {
|
||||
if [ -n "$SPINNER_PID" ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID > /dev/null; fi
|
||||
printf "\e[?25h"
|
||||
local msg="$1"
|
||||
echo -e "${BFR}${CM}${GN}${msg}${CL}"
|
||||
}
|
||||
|
||||
msg_error() { echo -e " ${RD}[ERROR] $1${CL}"; }
|
||||
|
||||
# Función de traducción
|
||||
translate() {
|
||||
local text="$1"
|
||||
|
||||
# Verificar y asegurar la estructura inicial del archivo de caché
|
||||
if [ ! -f "$CACHE_FILE" ] || ! jq -e . "$CACHE_FILE" > /dev/null 2>&1; then
|
||||
echo "{}" > "$CACHE_FILE"
|
||||
fi
|
||||
|
||||
# Verificar traducciones en caché
|
||||
local cached_translation=$(jq -r --arg text "$text" --arg lang "$LANGUAGE" '.[$text][$lang]' "$CACHE_FILE")
|
||||
if [ "$cached_translation" != "null" ]; then
|
||||
echo "$cached_translation"
|
||||
return
|
||||
fi
|
||||
|
||||
# Traducir usando googletrans
|
||||
if [ ! -d "$VENV_PATH" ]; then
|
||||
echo "$text"
|
||||
return
|
||||
fi
|
||||
|
||||
source "$VENV_PATH/bin/activate"
|
||||
local translated
|
||||
translated=$(python -c "
|
||||
from googletrans import Translator
|
||||
translator = Translator()
|
||||
try:
|
||||
print(translator.translate('$text', dest='$LANGUAGE').text)
|
||||
except:
|
||||
print('$text')
|
||||
" 2>/dev/null)
|
||||
deactivate
|
||||
|
||||
# Verificar si la traducción se realizó correctamente
|
||||
if [ -z "$translated" ] || [ "$translated" == "$text" ]; then
|
||||
echo "$text"
|
||||
return
|
||||
fi
|
||||
|
||||
# Guardar en caché con idioma destino
|
||||
local temp_cache=$(mktemp)
|
||||
jq --arg text "$text" --arg lang "$LANGUAGE" --arg translated "$translated" '
|
||||
if (.[$text] // null | type != "object") then
|
||||
.[$text] = {($lang): $translated}
|
||||
else
|
||||
.[$text][$lang] = $translated
|
||||
end
|
||||
' "$CACHE_FILE" > "$temp_cache" && mv "$temp_cache" "$CACHE_FILE"
|
||||
|
||||
echo "${translated:-$text}"
|
||||
}
|
||||
|
||||
# Función para identificar el disco físico donde está instalado Proxmox
|
||||
obtener_disco_fisico() {
|
||||
local ruta_lv=$1
|
||||
local nombre_pv
|
||||
nombre_pv=$(pvs --noheadings -o pv_name 2>/dev/null | grep -v "/dev/mapper" | head -n1 | tr -d ' ') || true
|
||||
if [ -z "$nombre_pv" ]; then
|
||||
echo "$(translate "No se pudo determinar el disco físico. ¿Está instalado LVM?")" >&2
|
||||
# Function to identify the physical disk where Proxmox is installed
|
||||
get_physical_disk() {
|
||||
local lv_path=$1
|
||||
local pv_name
|
||||
pv_name=$(pvs --noheadings -o pv_name 2>/dev/null | grep -v "/dev/mapper" | head -n1 | tr -d ' ') || true
|
||||
if [ -z "$pv_name" ]; then
|
||||
echo "$(translate "Could not determine the physical disk. Is LVM installed?")" >&2
|
||||
return 1
|
||||
fi
|
||||
echo "$nombre_pv" | sed 's/[0-9]*$//'
|
||||
echo "$pv_name" | sed 's/[0-9]*$//'
|
||||
}
|
||||
|
||||
# Función para obtener información detallada del disco
|
||||
# Function to get detailed disk information
|
||||
get_disk_info() {
|
||||
local disk=$1
|
||||
lsblk -ndo NAME,MODEL,SIZE "$disk" | awk '{print $1 " " $2 " " $3}'
|
||||
}
|
||||
|
||||
# Detectar la partición raíz y el disco físico asociado
|
||||
dispositivo_raiz=$(findmnt -n -o SOURCE / 2>/dev/null) || { echo "$(translate "No se pudo determinar el dispositivo raíz.")" >&2; exit 1; }
|
||||
if [[ $dispositivo_raiz == /dev/mapper/* ]]; then
|
||||
disco_fisico=$(obtener_disco_fisico "$dispositivo_raiz")
|
||||
# Detect the root partition and associated physical disk
|
||||
root_device=$(findmnt -n -o SOURCE / 2>/dev/null) || { echo "$(translate "Could not determine the root device.")" >&2; exit 1; }
|
||||
if [[ $root_device == /dev/mapper/* ]]; then
|
||||
physical_disk=$(get_physical_disk "$root_device")
|
||||
else
|
||||
disco_fisico=$(echo "$dispositivo_raiz" | sed 's/[0-9]*$//')
|
||||
physical_disk=$(echo "$root_device" | sed 's/[0-9]*$//')
|
||||
fi
|
||||
|
||||
if [ -z "$disco_fisico" ]; then
|
||||
echo "$(translate "No se pudo determinar el disco físico.")" >&2
|
||||
if [ -z "$physical_disk" ]; then
|
||||
echo "$(translate "Could not determine the physical disk.")" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
msg_ok "$(translate "Disco físico del sistema identificado"): $disco_fisico. $(translate "Este disco no se mostrará.")"
|
||||
msg_ok "$(translate "System physical disk identified"): $physical_disk. $(translate "This disk will not be shown.")"
|
||||
|
||||
# Mostrar lista de VMs disponibles
|
||||
# Display list of available VMs
|
||||
VM_LIST=$(qm list | awk 'NR>1 {print $1, $2}')
|
||||
if [ -z "$VM_LIST" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No hay VMs disponibles en el sistema.")" 8 40
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No VMs available in the system.")" 8 40
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Seleccionar VM
|
||||
VMID=$(whiptail --title "$(translate "Seleccionar VM")" --menu "$(translate "Selecciona la VM a la que deseas añadir discos:")" 15 60 8 $VM_LIST 3>&1 1>&2 2>&3)
|
||||
# Select VM
|
||||
VMID=$(whiptail --title "$(translate "Select VM")" --menu "$(translate "Select the VM to which you want to add disks:")" 15 60 8 $VM_LIST 3>&1 1>&2 2>&3)
|
||||
|
||||
if [ -z "$VMID" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No se seleccionó ninguna VM.")" 8 40
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No VM was selected.")" 8 40
|
||||
exit 1
|
||||
fi
|
||||
|
||||
VMID=$(echo "$VMID" | tr -d '"')
|
||||
|
||||
# Verificar que VMID es un número
|
||||
# Verify that VMID is a number
|
||||
if ! [[ "$VMID" =~ ^[0-9]+$ ]]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "El ID de VM seleccionado no es válido.")" 8 40
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "The selected VM ID is not valid.")" 8 40
|
||||
exit 1
|
||||
fi
|
||||
|
||||
clear
|
||||
msg_ok "$(translate "VM seleccionada correctamente.")"
|
||||
msg_ok "$(translate "VM selected successfully.")"
|
||||
|
||||
# Comprobar si la VM está encendida
|
||||
# Check if the VM is powered on
|
||||
VM_STATUS=$(qm status "$VMID" | awk '{print $2}')
|
||||
if [ "$VM_STATUS" == "running" ]; then
|
||||
whiptail --title "$(translate "Advertencia")" --msgbox "$(translate "La VM está encendida. Apágala antes de añadir discos.")" 12 60
|
||||
whiptail --title "$(translate "Warning")" --msgbox "$(translate "The VM is powered on. Turn it off before adding disks.")" 12 60
|
||||
exit 1
|
||||
fi
|
||||
|
||||
msg_info "$(translate "Detectando discos disponibles...")"
|
||||
msg_info "$(translate "Detecting available disks...")"
|
||||
|
||||
# Detectar discos libres, excluyendo el disco del sistema y los ya asignados a la VM seleccionada
|
||||
DISCOS_LIBRES=()
|
||||
# Detect free disks, excluding the system disk and those already assigned to the selected VM
|
||||
FREE_DISKS=()
|
||||
while read -r LINE; do
|
||||
DISCO=$(echo "$LINE" | awk '{print $1}')
|
||||
if [[ "/dev/$DISCO" != "$disco_fisico" ]] && ! qm config "$VMID" | grep -q "/dev/$DISCO"; then
|
||||
DESCRIPCION=$(echo "$LINE" | awk '{$1=""; print $0}' | xargs)
|
||||
DISCOS_LIBRES+=("/dev/$DISCO" "$DESCRIPCION" "OFF")
|
||||
DISK=$(echo "$LINE" | awk '{print $1}')
|
||||
if [[ "/dev/$DISK" != "$physical_disk" ]] && ! qm config "$VMID" | grep -q "/dev/$DISK"; then
|
||||
DESCRIPTION=$(echo "$LINE" | awk '{$1=""; print $0}' | xargs)
|
||||
FREE_DISKS+=("/dev/$DISK" "$DESCRIPTION" "OFF")
|
||||
fi
|
||||
done < <(lsblk -d -n -e 7,11 -o NAME,MODEL,SIZE)
|
||||
|
||||
msg_ok "$(translate "Discos disponibles detectados.")"
|
||||
msg_ok "$(translate "Available disks detected.")"
|
||||
|
||||
if [ "${#DISCOS_LIBRES[@]}" -eq 0 ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No hay discos disponibles para esta VM.")" 8 40
|
||||
if [ "${#FREE_DISKS[@]}" -eq 0 ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No disks available for this VM.")" 8 40
|
||||
clear
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Calcular longitud máxima del contenido
|
||||
MAX_WIDTH=$(printf "%s\n" "${DISCOS_LIBRES[@]}" | awk '{print length}' | sort -nr | head -n1)
|
||||
TOTAL_WIDTH=$((MAX_WIDTH + 20)) # Añade margen adicional
|
||||
# Calculate maximum content length
|
||||
MAX_WIDTH=$(printf "%s\n" "${FREE_DISKS[@]}" | awk '{print length}' | sort -nr | head -n1)
|
||||
TOTAL_WIDTH=$((MAX_WIDTH + 20)) # Add additional margin
|
||||
|
||||
# Establecer un ancho mínimo razonable
|
||||
# Set a reasonable minimum width
|
||||
if [ $TOTAL_WIDTH -lt 70 ]; then
|
||||
TOTAL_WIDTH=70
|
||||
fi
|
||||
|
||||
# Mostrar menú para seleccionar discos libres con el ancho calculado dinámicamente
|
||||
SELECCIONADOS=$(whiptail --title "$(translate "Seleccionar Discos")" --checklist \
|
||||
"$(translate "Selecciona los discos que deseas añadir:")" 20 $TOTAL_WIDTH 10 "${DISCOS_LIBRES[@]}" 3>&1 1>&2 2>&3)
|
||||
# Display menu to select free disks with dynamically calculated width
|
||||
SELECTED=$(whiptail --title "$(translate "Select Disks")" --checklist \
|
||||
"$(translate "Select the disks you want to add:")" 20 $TOTAL_WIDTH 10 "${FREE_DISKS[@]}" 3>&1 1>&2 2>&3)
|
||||
|
||||
# Comprobar si se seleccionaron discos
|
||||
if [ -z "$SELECCIONADOS" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No se seleccionaron discos.")" 10 $TOTAL_WIDTH
|
||||
# Check if disks were selected
|
||||
if [ -z "$SELECTED" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No disks were selected.")" 10 $TOTAL_WIDTH
|
||||
clear
|
||||
exit 1
|
||||
fi
|
||||
|
||||
msg_ok "$(translate "Discos seleccionados correctamente.")"
|
||||
msg_ok "$(translate "Disks selected successfully.")"
|
||||
|
||||
# Seleccionar tipo de interfaz una sola vez para todos los discos
|
||||
INTERFAZ=$(whiptail --title "$(translate "Tipo de Interfaz")" --menu "$(translate "Selecciona el tipo de interfaz para todos los discos:")" 15 40 4 \
|
||||
"sata" "$(translate "Añadir como SATA")" \
|
||||
"scsi" "$(translate "Añadir como SCSI")" \
|
||||
"virtio" "$(translate "Añadir como VirtIO")" \
|
||||
"ide" "$(translate "Añadir como IDE")" 3>&1 1>&2 2>&3)
|
||||
# Select interface type once for all disks
|
||||
INTERFACE=$(whiptail --title "$(translate "Interface Type")" --menu "$(translate "Select the interface type for all disks:")" 15 40 4 \
|
||||
"sata" "$(translate "Add as SATA")" \
|
||||
"scsi" "$(translate "Add as SCSI")" \
|
||||
"virtio" "$(translate "Add as VirtIO")" \
|
||||
"ide" "$(translate "Add as IDE")" 3>&1 1>&2 2>&3)
|
||||
|
||||
if [ -z "$INTERFAZ" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No se seleccionó un tipo de interfaz para los discos.")" 8 40
|
||||
if [ -z "$INTERFACE" ]; then
|
||||
whiptail --title "$(translate "Error")" --msgbox "$(translate "No interface type was selected for the disks.")" 8 40
|
||||
clear
|
||||
exit 1
|
||||
fi
|
||||
|
||||
msg_ok "$(translate "Tipo de interfaz seleccionado: $INTERFAZ")"
|
||||
msg_ok "$(translate "Interface type selected: $INTERFACE")"
|
||||
|
||||
# Verificar discos seleccionados
|
||||
DISCOS_ADDED=0
|
||||
MENSAJES_ERROR=""
|
||||
MENSAJES_EXITO=""
|
||||
# Verify selected disks
|
||||
DISKS_ADDED=0
|
||||
ERROR_MESSAGES=""
|
||||
SUCCESS_MESSAGES=""
|
||||
|
||||
msg_info "$(translate "Procesando discos seleccionados...")"
|
||||
msg_info "$(translate "Processing selected disks...")"
|
||||
|
||||
for DISCO in $SELECCIONADOS; do
|
||||
DISCO=$(echo "$DISCO" | tr -d '"')
|
||||
DISCO_INFO=$(get_disk_info "$DISCO")
|
||||
for DISK in $SELECTED; do
|
||||
DISK=$(echo "$DISK" | tr -d '"')
|
||||
DISK_INFO=$(get_disk_info "$DISK")
|
||||
|
||||
# Verificar si el disco ya está asignado a otra VM
|
||||
ASIGNADO_A=""
|
||||
# Check if the disk is already assigned to another VM
|
||||
ASSIGNED_TO=""
|
||||
while read -r VM_ID VM_NAME; do
|
||||
if [[ "$VM_ID" =~ ^[0-9]+$ ]] && qm config "$VM_ID" | grep -q "$DISCO"; then
|
||||
ASIGNADO_A+="$VM_ID $VM_NAME\n"
|
||||
if [[ "$VM_ID" =~ ^[0-9]+$ ]] && qm config "$VM_ID" | grep -q "$DISK"; then
|
||||
ASSIGNED_TO+="$VM_ID $VM_NAME\n"
|
||||
fi
|
||||
done < <(qm list | awk 'NR>1 {print $1, $2}')
|
||||
|
||||
CONTINUAR=true
|
||||
if [ -n "$ASIGNADO_A" ]; then
|
||||
VMS_ENCENDIDAS=""
|
||||
CONTINUE=true
|
||||
if [ -n "$ASSIGNED_TO" ]; then
|
||||
RUNNING_VMS=""
|
||||
while read -r VM_ID VM_NAME; do
|
||||
if [[ "$VM_ID" =~ ^[0-9]+$ ]] && [ "$(qm status "$VM_ID" | awk '{print $2}')" == "running" ]; then
|
||||
VMS_ENCENDIDAS+="$VM_ID $VM_NAME\n"
|
||||
RUNNING_VMS+="$VM_ID $VM_NAME\n"
|
||||
fi
|
||||
done < <(echo -e "$ASIGNADO_A")
|
||||
done < <(echo -e "$ASSIGNED_TO")
|
||||
|
||||
if [ -n "$VMS_ENCENDIDAS" ]; then
|
||||
MENSAJES_ERROR+="$(translate "El disco") $DISCO_INFO $(translate "está en uso por la(s) VM(s) encendida(s):")\\n$VMS_ENCENDIDAS\\n\\n"
|
||||
CONTINUAR=false
|
||||
if [ -n "$RUNNING_VMS" ]; then
|
||||
ERROR_MESSAGES+="$(translate "The disk") $DISK_INFO $(translate "is in use by the following running VM(s):")\\n$RUNNING_VMS\\n\\n"
|
||||
CONTINUE=false
|
||||
fi
|
||||
fi
|
||||
|
||||
if $CONTINUAR; then
|
||||
if $CONTINUE; then
|
||||
INDEX=0
|
||||
while qm config "$VMID" | grep -q "${INTERFAZ}${INDEX}"; do
|
||||
while qm config "$VMID" | grep -q "${INTERFACE}${INDEX}"; do
|
||||
((INDEX++))
|
||||
done
|
||||
|
||||
# Realizar la asignación
|
||||
RESULTADO=$(qm set "$VMID" -${INTERFAZ}${INDEX} "$DISCO" 2>&1)
|
||||
# Perform the assignment
|
||||
RESULT=$(qm set "$VMID" -${INTERFACE}${INDEX} "$DISK" 2>&1)
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
MENSAJE="$(translate "El disco") $DISCO_INFO $(translate "se ha añadido correctamente a la VM") $VMID."
|
||||
if [ -n "$ASIGNADO_A" ]; then
|
||||
MENSAJE+="\n$(translate "ADVERTENCIA: Este disco también está asignado a la(s) VM(s):")\n$ASIGNADO_A"
|
||||
MENSAJE+="$(translate "Asegúrate de no encender simultáneamente las VMs que comparten este disco para evitar daños en los datos.")\n"
|
||||
MESSAGE="$(translate "The disk") $DISK_INFO $(translate "has been successfully added to VM") $VMID."
|
||||
if [ -n "$ASSIGNED_TO" ]; then
|
||||
MESSAGE+="\n$(translate "WARNING: This disk is also assigned to the following VM(s):")\n$ASSIGNED_TO"
|
||||
MESSAGE+="$(translate "Make sure not to power on VMs that share this disk simultaneously to avoid data corruption.")\n"
|
||||
fi
|
||||
MENSAJES_EXITO+="$MENSAJE\\n\\n"
|
||||
((DISCOS_ADDED++))
|
||||
SUCCESS_MESSAGES+="$MESSAGE\\n\\n"
|
||||
((DISKS_ADDED++))
|
||||
else
|
||||
MENSAJES_ERROR+="$(translate "No se pudo añadir el disco") $DISCO_INFO $(translate "a la VM") $VMID.\\n$(translate "Error:") $RESULTADO\\n\\n"
|
||||
ERROR_MESSAGES+="$(translate "Could not add disk") $DISK_INFO $(translate "to VM") $VMID.\\n$(translate "Error:") $RESULT\\n\\n"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
msg_ok "$(translate "Procesamiento de discos completado.")"
|
||||
msg_ok "$(translate "Disk processing completed.")"
|
||||
|
||||
# Display success messages
|
||||
if [ -n "$SUCCESS_MESSAGES" ]; then
|
||||
|
||||
|
||||
MSG_LINES=$(echo "$SUCCESS_MESSAGES" | wc -l)
|
||||
|
||||
|
||||
|
||||
whiptail --title "$(translate "Successful Operations")" --scrolltext --msgbox "$SUCCESS_MESSAGES" 20 70
|
||||
|
||||
|
||||
|
||||
# Mostrar mensajes de éxito
|
||||
if [ -n "$MENSAJES_EXITO" ]; then
|
||||
whiptail --title "$(translate "Operaciones Exitosas")" --scrolltext --msgbox "$MENSAJES_EXITO" 20 70
|
||||
fi
|
||||
|
||||
# Mostrar mensajes de error o advertencia si los hay
|
||||
if [ -n "$MENSAJES_ERROR" ]; then
|
||||
whiptail --title "$(translate "Advertencias y Errores")" --scrolltext --msgbox "$MENSAJES_ERROR" 20 70
|
||||
# Display error or warning messages if any
|
||||
if [ -n "$ERROR_MESSAGES" ]; then
|
||||
whiptail --title "$(translate "Warnings and Errors")" --scrolltext --msgbox "$ERROR_MESSAGES" 20 70
|
||||
fi
|
||||
|
||||
# Mensaje de operación completada
|
||||
if [ $DISCOS_ADDED -gt 0 ]; then
|
||||
whiptail --title "$(translate "Operación Completada")" --msgbox "$(translate "Se añadieron $DISCOS_ADDED disco(s) correctamente a la VM") $VMID." 8 60
|
||||
# Operation completed message
|
||||
if [ $DISKS_ADDED -gt 0 ]; then
|
||||
whiptail --title "$(translate "Operation Completed")" --msgbox "$(translate "$DISKS_ADDED disk(s) were successfully added to VM") $VMID." 8 60
|
||||
else
|
||||
whiptail --title "$(translate "Información")" --msgbox "$(translate "No se añadieron discos a la VM") $VMID." 8 60
|
||||
whiptail --title "$(translate "Information")" --msgbox "$(translate "No disks were added to VM") $VMID." 8 60
|
||||
fi
|
||||
|
||||
clear
|
||||
exit 0
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user