Update update-lxcs.sh

Start the container and perform an update if it is not a template.
This commit is contained in:
tteckster 2023-02-22 15:42:48 -05:00 committed by GitHub
parent 565e4349ff
commit 1780cd99c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 8 deletions

View File

@ -49,16 +49,11 @@ function update_container() {
esac
}
header_info
read -p "Skip stopped containers? [y/N]" -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
skip=no
else
skip=yes
fi
for container in $containers; do
status=$(pct status $container)
if [ "$skip" == "no" ] && [ "$status" == "status: stopped" ]; then
template=$(pct config $container | grep -q "template:" && echo "true" || echo "false")
if [ "$template" == "false" ] && [ "$status" == "status: stopped" ]; then
echo -e "${BL}[Info]${GN} Starting${BL} $container ${CL} \n"
pct start $container
echo -e "${BL}[Info]${GN} Waiting For${BL} $container${CL}${GN} To Start ${CL} \n"