mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Update clean-lxcs.sh
Start the container and prompt to clean if it is not a template.
This commit is contained in:
		
							parent
							
								
									a36d736bf4
								
							
						
					
					
						commit
						3efdce3526
					
				| 
						 | 
					@ -42,17 +42,11 @@ function clean_container() {
 | 
				
			||||||
  echo -e "${BL}[Info]${GN} Cleaning ${name} ${CL} \n"
 | 
					  echo -e "${BL}[Info]${GN} Cleaning ${name} ${CL} \n"
 | 
				
			||||||
  pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/tteck/Proxmox/raw/main/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update"
 | 
					  pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/tteck/Proxmox/raw/main/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
read -p "Skip stopped containers? [y/N]" -n 1 -r
 | 
					 | 
				
			||||||
echo
 | 
					 | 
				
			||||||
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
 | 
					 | 
				
			||||||
  skip=no
 | 
					 | 
				
			||||||
else
 | 
					 | 
				
			||||||
  skip=yes
 | 
					 | 
				
			||||||
fi
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
for container in $containers; do
 | 
					for container in $containers; do
 | 
				
			||||||
  status=$(pct status $container)
 | 
					  status=$(pct status $container)
 | 
				
			||||||
  if [ "$skip" == "no" ] && [ "$status" == "status: stopped" ]; then
 | 
					  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"
 | 
					      echo -e "${BL}[Info]${GN} Starting${BL} $container ${CL} \n"
 | 
				
			||||||
      pct start $container
 | 
					      pct start $container
 | 
				
			||||||
      echo -e "${BL}[Info]${GN} Waiting For${BL} $container${CL}${GN} To Start ${CL} \n"
 | 
					      echo -e "${BL}[Info]${GN} Waiting For${BL} $container${CL}${GN} To Start ${CL} \n"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue