Add Description field for Bridges
Some checks failed
Bump build.func Revision / bump-revision (push) Has been cancelled
Some checks failed
Bump build.func Revision / bump-revision (push) Has been cancelled
This commit is contained in:
parent
8d00d2c9db
commit
5d68b20a4a
@ -630,19 +630,19 @@ advanced_settings() {
|
|||||||
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}"
|
||||||
else
|
else
|
||||||
# Build bridge menu with descriptions
|
# Build bridge menu with descriptions
|
||||||
BRIDGE_MENU_OPTIONS=""
|
BRIDGE_MENU_OPTIONS=()
|
||||||
while IFS= read -r bridge; do
|
while IFS= read -r bridge; do
|
||||||
if [[ -n "$bridge" ]]; then
|
if [[ -n "$bridge" ]]; then
|
||||||
description=$(get_bridge_description "$bridge")
|
description=$(get_bridge_description "$bridge")
|
||||||
if [[ -n "$description" ]]; then
|
if [[ -n "$description" ]]; then
|
||||||
BRIDGE_MENU_OPTIONS="${BRIDGE_MENU_OPTIONS}${bridge} \"${bridge} - ${description}\" "
|
BRIDGE_MENU_OPTIONS+=("$bridge" "${bridge} - ${description}")
|
||||||
else
|
else
|
||||||
BRIDGE_MENU_OPTIONS="${BRIDGE_MENU_OPTIONS}${bridge} \"${bridge}\" "
|
BRIDGE_MENU_OPTIONS+=("$bridge" "$bridge")
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
done <<< "$BRIDGES"
|
done <<< "$BRIDGES"
|
||||||
|
|
||||||
BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --menu "Select network bridge:" 15 60 6 $BRIDGE_MENU_OPTIONS 3>&1 1>&2 2>&3)
|
BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --menu "Select network bridge:" 15 60 6 "${BRIDGE_MENU_OPTIONS[@]}" 3>&1 1>&2 2>&3)
|
||||||
if [[ -z "$BRG" ]]; then
|
if [[ -z "$BRG" ]]; then
|
||||||
exit_script
|
exit_script
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user