2023-02-07 12:15:22 -05:00
#!/usr/bin/env bash
2025-08-07 13:34:40 +02:00
# Copyright (c) 2021-2025 community-scripts ORG
2023-02-07 12:15:22 -05:00
# License: MIT
2024-11-02 08:48:05 +01:00
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
2023-02-07 12:15:22 -05:00
2023-03-14 08:01:43 -04:00
function header_info( ) {
2023-04-30 04:43:52 -04:00
clear
cat <<"EOF"
2023-01-27 09:53:43 -05:00
________ __ _ ________
/ ____/ /__ ____ _____ / / | | / / ____/
2023-09-06 00:34:31 -04:00
/ / / / _ \/ __ ` / __ \ / / | / /
/ /___/ / __/ /_/ / / / / / /___/ / /___
\_ ___/_/\_ __/\_ _,_/_/ /_/ /_____/_/| _\_ ___/
2023-01-27 09:53:43 -05:00
EOF
}
2025-08-07 13:34:40 +02:00
2025-04-28 15:42:49 +02:00
set -eEuo pipefail
2025-08-07 13:34:40 +02:00
BL = "\033[36m"
RD = "\033[01;31m"
2023-01-27 09:53:43 -05:00
CM = '\xE2\x9C\x94\033'
2025-08-07 13:34:40 +02:00
GN = "\033[1;92m"
CL = "\033[m"
2023-01-27 09:53:43 -05:00
header_info
2023-09-13 11:35:21 -04:00
echo "Loading..."
2025-08-07 13:34:40 +02:00
whiptail --backtitle "Proxmox VE Helper Scripts" --title "Proxmox VE LXC Updater" --yesno "This will clean logs, cache and update package lists on selected LXC Containers. Proceed?" 10 58
2023-09-06 02:59:48 -04:00
NODE = $( hostname)
2023-10-06 23:42:54 -04:00
EXCLUDE_MENU = ( )
MSG_MAX_LENGTH = 0
2025-08-07 13:34:40 +02:00
2023-09-13 11:35:21 -04:00
while read -r TAG ITEM; do
2023-09-06 00:34:31 -04:00
OFFSET = 2
2023-09-13 11:35:21 -04:00
( ( ${# ITEM } + OFFSET > MSG_MAX_LENGTH) ) && MSG_MAX_LENGTH = ${# ITEM } +OFFSET
2023-10-06 23:42:54 -04:00
EXCLUDE_MENU += ( " $TAG " " $ITEM " "OFF" )
2023-09-06 00:34:31 -04:00
done < <( pct list | awk 'NR>1' )
2025-08-07 13:34:40 +02:00
2023-09-13 11:35:21 -04:00
excluded_containers = $( whiptail --backtitle "Proxmox VE Helper Scripts" --title " Containers on $NODE " --checklist "\nSelect containers to skip from cleaning:\n" \
2025-04-15 15:20:46 +02:00
16 $(( MSG_MAX_LENGTH + 23 )) 6 " ${ EXCLUDE_MENU [@] } " 3>& 1 1>& 2 2>& 3 | tr -d '"' )
2023-09-13 11:35:21 -04:00
2025-04-28 15:42:49 +02:00
if [ $? -ne 0 ] ; then
exit
2025-08-07 13:34:40 +02:00
fi
2025-04-28 15:42:49 +02:00
2025-08-07 13:34:40 +02:00
function run_lxc_clean( ) {
local container = $1
2023-01-27 09:53:43 -05:00
header_info
2023-02-05 12:36:42 -05:00
name = $( pct exec " $container " hostname)
2025-08-07 13:34:40 +02:00
pct exec " $container " -- bash -c '
BL = "\033[36m" ; GN = "\033[1;92m" ; CL = "\033[m"
name = $( hostname)
if [ -e /etc/alpine-release ] ; then
echo -e " ${ BL } [Info] ${ GN } Cleaning $name (Alpine) ${ CL } \n "
apk cache clean
find /var/log -type f -delete 2>/dev/null
find /tmp -mindepth 1 -delete 2>/dev/null
apk update
else
echo -e " ${ BL } [Info] ${ GN } Cleaning $name (Debian/Ubuntu) ${ CL } \n "
find /var/cache -type f -delete 2>/dev/null
find /var/log -type f -delete 2>/dev/null
find /tmp -mindepth 1 -delete 2>/dev/null
apt-get -y --purge autoremove
apt-get -y autoclean
rm -rf /var/lib/apt/lists/*
apt-get update
fi
'
2023-01-27 09:53:43 -05:00
}
2025-08-07 13:34:40 +02:00
2023-04-30 04:43:52 -04:00
for container in $( pct list | awk '{if(NR>1) print $1}' ) ; do
2023-09-06 00:34:31 -04:00
if [ [ " ${ excluded_containers [@] } " = ~ " $container " ] ] ; then
2023-03-14 08:01:43 -04:00
header_info
2023-09-06 00:34:31 -04:00
echo -e " ${ BL } [Info] ${ GN } Skipping ${ BL } $container ${ CL } "
2023-03-14 08:01:43 -04:00
sleep 1
2025-08-07 13:34:40 +02:00
continue
fi
2023-09-06 00:34:31 -04:00
2025-08-07 13:34:40 +02:00
os = $( pct config " $container " | awk '/^ostype/ {print $2}' )
# Supported: debian, ubuntu, alpine
if [ " $os " != "debian" ] && [ " $os " != "ubuntu" ] && [ " $os " != "alpine" ] ; then
header_info
echo -e " ${ BL } [Info] ${ GN } Skipping ${ RD } $container is not Debian, Ubuntu or Alpine ${ CL } \n "
sleep 1
continue
fi
status = $( pct status " $container " )
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 "
sleep 5
run_lxc_clean " $container "
echo -e " ${ BL } [Info] ${ GN } Shutting down ${ BL } $container ${ CL } \n "
pct shutdown " $container " &
elif [ " $status " = = "status: running" ] ; then
run_lxc_clean " $container "
2023-01-27 09:53:43 -05:00
fi
done
2023-09-06 00:34:31 -04:00
2023-01-27 09:53:43 -05:00
wait
2023-01-27 10:00:29 -05:00
header_info
2023-09-13 11:35:21 -04:00
echo -e " ${ GN } Finished, Selected Containers Cleaned. ${ CL } \n "