Update update-lxcs.sh

This commit is contained in:
tteckster 2022-07-31 17:35:14 -04:00 committed by GitHub
parent 5429e11bf5
commit d0090a8cd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 9 deletions

View File

@ -35,14 +35,7 @@ function update_container() {
clear
header_info
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
pct config $container > temp
os=`awk '/^ostype/' temp | cut -d' ' -f2`
if [ "$os" == "alpine" ]
then
pct exec $container -- ash -c "apk update && apk upgrade"
else
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
fi
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
}
read -p "Skip stopped containers? " -n 1 -r
echo
@ -76,5 +69,4 @@ do
fi
done; wait
rm temp
echo -e "${GN} Finished, All Containers Updated. ${CL} \n"