From 1517bec1c3a21a9d401b0a0a4eb08ad08703e9bd Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 8 Oct 2023 12:07:56 -0400 Subject: [PATCH] Update update-lxcs.sh tweak --- misc/update-lxcs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/update-lxcs.sh b/misc/update-lxcs.sh index e1b810da..9a48dc1f 100644 --- a/misc/update-lxcs.sh +++ b/misc/update-lxcs.sh @@ -95,7 +95,7 @@ for container in $(pct list | awk '{if(NR>1) print $1}'); do if pct exec "$container" -- [ -e "/var/run/reboot-required" ]; then # Get the container's hostname and add it to the list container_hostname=$(pct exec "$container" hostname) - containers_needing_reboot+=("$container - $container_hostname") + containers_needing_reboot+=("$container ($container_hostname)") fi fi done