mirror of https://github.com/tteck/Proxmox.git
				
				
				
			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:
		
							parent
							
								
									1b35388336
								
							
						
					
					
						commit
						694002e14a
					
				| 
						 | 
					@ -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" ]
 | 
					  if [ "$os" == "alpine" ]; then
 | 
				
			||||||
  then
 | 
					        pct exec $container -- ash -c "apk update && apk upgrade -y"
 | 
				
			||||||
        pct exec $container -- ash -c "apk update && apk upgrade"
 | 
					  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
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue