Update update-lxcs.sh

This commit is contained in:
tteckster 2022-03-02 08:59:01 -05:00 committed by GitHub
parent aca75652c8
commit b7f39d3f23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ containers=$(pct list | tail -n +2 | cut -f1 -d' ')
function update_container() {
container=$1
echo -e "${BL}[Info]${GN} Updating${BL} $container... ${CL} \n"
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
# to chain commands within one exec we will need to wrap them in bash
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
}
@ -41,9 +41,9 @@ for container in $containers
do
status=`pct status $container`
if [ "$status" == "status: stopped" ]; then
echo -e "${BL}[Info]${GN} Starting${BL} $container... ${CL} \n"
echo -e "${BL}[Info]${GN} Starting${BL} $container ${CL} \n"
pct start $container
echo -e "${BL}[Info]${GN} Waiting For${BL} $container To Start... ${CL} \n"
echo -e "${BL}[Info]${GN} Waiting For${BL} $container To Start ${CL} \n"
sleep 5
update_container $container
echo -e "${BL}[Info]${GN} Shutting down${BL} $container ${CL} \n"