Compare commits

...

4 Commits

Author SHA1 Message Date
tteckster c7593ed2eb
Update update-lxcs.sh
tweaks
2023-09-22 21:20:00 -04:00
tteckster 7942bf5755
Update update-lxcs.sh
tweak
2023-09-22 21:10:00 -04:00
tteckster f6a59ba4fd
Update update-lxcs.sh 2023-09-22 21:03:41 -04:00
tteckster 461a737b98
Update update-lxcs.sh
fixes https://github.com/tteck/Proxmox/issues/1825
2023-09-22 21:02:00 -04:00
1 changed files with 4 additions and 5 deletions

View File

@ -17,7 +17,7 @@ function header_info {
EOF
}
set -e
set -eEuo pipefail
YW=$(echo "\033[33m")
BL=$(echo "\033[36m")
RD=$(echo "\033[01;31m")
@ -28,15 +28,14 @@ header_info
echo "Loading..."
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE LXC Updater" --yesno "This Will Update LXC Containers. Proceed?" 10 58 || exit
NODE=$(hostname)
CTID_MENU=()
MSG_MAX_LENGTH=0
while read -r TAG ITEM; do
OFFSET=2
((${#ITEM} + OFFSET > MSG_MAX_LENGTH)) && MSG_MAX_LENGTH=${#ITEM}+OFFSET
CTID_MENU+=("$TAG" "$ITEM " "OFF")
done < <(pct list | awk 'NR>1')
excluded_containers=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Containers on $NODE" --checklist \
"\nSelect containers to skip from updates:\n" \
16 $((MSG_MAX_LENGTH + 23)) 6 "${CTID_MENU[@]}" 3>&1 1>&2 2>&3 | tr -d '"') || exit
excluded_containers=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Containers on $NODE" --checklist "\nSelect containers to skip from updates:\n" 16 $((MSG_MAX_LENGTH + 23)) 6 "${CTID_MENU[@]}" 3>&1 1>&2 2>&3 | tr -d '"') || exit
function update_container() {
container=$1
header_info