mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-17 20:11:17 +00:00
Update update-lxcs.sh
This commit is contained in:
parent
9e45482198
commit
9cb82fc8d6
@ -37,9 +37,19 @@ function update_container() {
|
|||||||
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
|
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
|
||||||
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
|
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
|
||||||
}
|
}
|
||||||
|
read -p "Skip stopped containers? " -n 1 -r
|
||||||
|
echo
|
||||||
|
if [[ ! $REPLY =~ ^[Yy]$ ]]
|
||||||
|
then
|
||||||
|
skip=no
|
||||||
|
else
|
||||||
|
skip=yes
|
||||||
|
fi
|
||||||
|
|
||||||
for container in $containers
|
for container in $containers
|
||||||
do
|
do
|
||||||
status=`pct status $container`
|
status=`pct status $container`
|
||||||
|
if [ "$skip" == "no" ]; then
|
||||||
if [ "$status" == "status: stopped" ]; then
|
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
|
pct start $container
|
||||||
@ -51,5 +61,12 @@ do
|
|||||||
elif [ "$status" == "status: running" ]; then
|
elif [ "$status" == "status: running" ]; then
|
||||||
update_container $container
|
update_container $container
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
if [ "$skip" == "yes" ]; then
|
||||||
|
if [ "$status" == "status: running" ]; then
|
||||||
|
update_container $container
|
||||||
|
fi
|
||||||
|
fi
|
||||||
done; wait
|
done; wait
|
||||||
|
|
||||||
echo -e "${GN} Finished, All Containers Updated. ${CL} \n"
|
echo -e "${GN} Finished, All Containers Updated. ${CL} \n"
|
||||||
|
Loading…
Reference in New Issue
Block a user