mirror of https://github.com/tteck/Proxmox.git
				
				
				
			
							parent
							
								
									35c8333768
								
							
						
					
					
						commit
						1cdc6b9687
					
				| 
						 | 
					@ -194,6 +194,7 @@ else
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
start_script
 | 
					start_script
 | 
				
			||||||
 | 
					msg_info "Validating Storage"
 | 
				
			||||||
while read -r line; do
 | 
					while read -r line; do
 | 
				
			||||||
  TAG=$(echo $line | awk '{print $1}')
 | 
					  TAG=$(echo $line | awk '{print $1}')
 | 
				
			||||||
  TYPE=$(echo $line | awk '{printf "%-10s", $2}')
 | 
					  TYPE=$(echo $line | awk '{printf "%-10s", $2}')
 | 
				
			||||||
| 
						 | 
					@ -205,9 +206,11 @@ while read -r line; do
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
STORAGE_MENU+=( "$TAG" "$ITEM" "OFF" )
 | 
					STORAGE_MENU+=( "$TAG" "$ITEM" "OFF" )
 | 
				
			||||||
done < <(pvesm status -content images | awk 'NR>1')
 | 
					done < <(pvesm status -content images | awk 'NR>1')
 | 
				
			||||||
if [ $((${#STORAGE_MENU[@]}/3)) -eq 0 ]; then
 | 
					VALID=$(pvesm status -content images | awk 'NR>1')
 | 
				
			||||||
  echo -e "'Disk image' needs to be selected for at least one storage location."
 | 
					if [ -z "$VALID" ]; then
 | 
				
			||||||
  die "Unable to detect valid storage location."
 | 
						echo -e "${RD}⚠ Unable to detect a valid storage location.${CL}"
 | 
				
			||||||
 | 
						echo -e "Exiting..."
 | 
				
			||||||
 | 
						exit
 | 
				
			||||||
elif [ $((${#STORAGE_MENU[@]}/3)) -eq 1 ]; then
 | 
					elif [ $((${#STORAGE_MENU[@]}/3)) -eq 1 ]; then
 | 
				
			||||||
  STORAGE=${STORAGE_MENU[0]}
 | 
					  STORAGE=${STORAGE_MENU[0]}
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue