From eceb1a6b551b8008395366992cac68c17c8b331e Mon Sep 17 00:00:00 2001 From: tteckster Date: Sun, 13 Mar 2022 18:49:00 -0400 Subject: [PATCH] Update update-lxcs.sh --- misc/update-lxcs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/update-lxcs.sh b/misc/update-lxcs.sh index b630d8bf..b20a0ea3 100644 --- a/misc/update-lxcs.sh +++ b/misc/update-lxcs.sh @@ -32,11 +32,11 @@ containers=$(pct list | tail -n +2 | cut -f1 -d' ') function update_container() { container=$1 + clear + header_info echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n" pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y" } -clear -header_info for container in $containers do status=`pct status $container`