Adding more support and little feature (#755)

Just adding support of other os and the hostname in the info bar

[Update Ubuntu, Debian, Devuan, Alpine Linux, CentOS-Rocky-Alma, Fedora, ArchLinux ] New feature
This commit is contained in:
Uruk 2022-11-22 01:04:28 +01:00 committed by GitHub
parent 1b35388336
commit 694002e14a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -34,16 +34,23 @@ function update_container() {
container=$1
clear
header_info
echo -e "${BL}[Info]${GN} Updating${BL} $container ${CL} \n"
name=`pct exec $container hostname`
echo -e "${BL}[Info]${GN} Updating ${BL}$container${CL} : ${GN}$name${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"
if [ "$os" == "alpine" ]; then
pct exec $container -- ash -c "apk update && apk upgrade -y"
elif [ "$os" == "ubuntu" ] || [ "$os" == "debian" ] || [ "$os" == "devuan" ]; then
pct exec $container -- bash -c "apt-get update && apt-get upgrade -y && apt-get clean && apt-get --purge autoremove -y"
elif [ "$os" == "fedora" ]; then
pct exec $container -- bash -c "dnf -y update && dnf -y upgrade && dnf -y --purge autoremove"
elif [ "$os" == "archlinux" ]; then
pct exec $container -- bash -c "pacman -Syyu --noconfirm"
else
pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
pct exec $container -- bash -c "yum -y update"
fi
}
read -p "Skip stopped containers? " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then