Proxmox/misc/update-lxcs.sh

73 lines
1.8 KiB
Bash
Raw Normal View History

2022-03-02 14:33:52 +01:00
#!/bin/bash
set -e
YW=`echo "\033[33m"`
BL=`echo "\033[36m"`
RD=`echo "\033[01;31m"`
CM='\xE2\x9C\x94\033'
GN=`echo "\033[1;92m"`
CL=`echo "\033[m"`
while true; do
read -p "This Will Update All LXC Containers. Proceed(y/n)?" yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit;;
* ) echo "Please answer yes or no.";;
esac
done
clear
function header_info {
echo -e "${BL}
_ _ _____ _____ _______ ______
| | | | __ \| __ \ /\|__ __| ____|
| | | | |__) | | | | / \ | | | |__
| | | | ___/| | | |/ /\ \ | | | __|
| |__| | | | |__| / ____ \| | | |____
\____/|_| |_____/_/ \_\_| |______|
${CL}"
}
header_info
containers=$(pct list | tail -n +2 | cut -f1 -d' ')
function update_container() {
container=$1
2022-03-13 23:49:00 +01:00
clear
header_info
2022-03-02 14:59:01 +01:00
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
2022-07-31 23:35:14 +02:00
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
2022-03-02 14:33:52 +01:00
}
2022-04-11 13:57:53 +02:00
read -p "Skip stopped containers? " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
skip=no
else
skip=yes
fi
2022-03-02 14:33:52 +01:00
for container in $containers
do
status=`pct status $container`
2022-04-11 13:57:53 +02:00
if [ "$skip" == "no" ]; then
2022-03-02 14:33:52 +01:00
if [ "$status" == "status: stopped" ]; then
2022-03-02 14:59:01 +01:00
echo -e "${BL}[Info]${GN} Starting${BL} $container ${CL} \n"
2022-03-02 14:33:52 +01:00
pct start $container
2022-03-13 23:45:42 +01:00
echo -e "${BL}[Info]${GN} Waiting For${BL} $container${CL}${GN} To Start ${CL} \n"
2022-03-02 14:33:52 +01:00
sleep 5
update_container $container
2022-03-02 14:41:37 +01:00
echo -e "${BL}[Info]${GN} Shutting down${BL} $container ${CL} \n"
2022-03-02 14:33:52 +01:00
pct shutdown $container &
elif [ "$status" == "status: running" ]; then
update_container $container
fi
2022-04-11 13:57:53 +02:00
fi
if [ "$skip" == "yes" ]; then
if [ "$status" == "status: running" ]; then
update_container $container
fi
fi
2022-03-02 14:33:52 +01:00
done; wait
2022-04-11 13:57:53 +02:00
2022-03-02 14:41:37 +01:00
echo -e "${GN} Finished, All Containers Updated. ${CL} \n"