Переглянути джерело

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
Uruk 2 роки тому
батько
коміт
694002e14a
1 змінених файлів з 12 додано та 5 видалено
  1. 12 5
      misc/update-lxcs.sh

+ 12 - 5
misc/update-lxcs.sh

@@ -34,16 +34,23 @@ function update_container() {
   container=$1
   container=$1
   clear
   clear
   header_info
   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
   pct config $container > temp
   os=`awk '/^ostype/' temp | cut -d' ' -f2`
   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
   else
-        pct exec $container -- bash -c "apt update && apt upgrade -y && apt autoremove -y"
+        pct exec $container -- bash -c "yum -y update"
   fi
   fi
 }
 }
+
 read -p "Skip stopped containers? " -n 1 -r
 read -p "Skip stopped containers? " -n 1 -r
 echo
 echo
 if [[ ! $REPLY =~ ^[Yy]$ ]]; then
 if [[ ! $REPLY =~ ^[Yy]$ ]]; then