mirror of
				https://github.com/oSoWoSo/DistroHopper.git
				synced 2024-08-14 22:46:53 +00:00 
			
		
		
		
	Refactor get_debian()
This commit is contained in:
		
							parent
							
								
									a1f02e6b3a
								
							
						
					
					
						commit
						dc5cc54af5
					
				
					 1 changed files with 8 additions and 11 deletions
				
			
		
							
								
								
									
										17
									
								
								quickget
									
										
									
									
									
								
							
							
						
						
									
										17
									
								
								quickget
									
										
									
									
									
								
							|  | @ -841,27 +841,24 @@ function get_cachyos() { | |||
| 
 | ||||
| function get_debian() { | ||||
|     local HASH="" | ||||
|     local HASHLINE="" | ||||
|     local ISO="" | ||||
|     local URL="" | ||||
|     local HASHLINE="" | ||||
|     local FREEDOM="" | ||||
| 
 | ||||
| 
 | ||||
|     validate_release "releases_debian" | ||||
| 
 | ||||
|     if [ "${1}" == "nonfree" ]; then | ||||
|       RELEASE="${RELEASE}+nonfree" | ||||
|     fi | ||||
|     case $RELEASE in | ||||
|       *+nonfree)  URL="http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current-live/amd64/iso-hybrid" ;; | ||||
| 
 | ||||
|     case ${RELEASE} in | ||||
|       *+nonfree) URL="http://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/current-live/amd64/iso-hybrid";; | ||||
|       *)         URL="https://cdimage.debian.org/debian-cd/current-live/amd64/iso-hybrid";; | ||||
|     esac | ||||
| 
 | ||||
| 
 | ||||
|     HASHLINE=$(wget -q -O- ${URL}/SHA512SUMS |grep ${RELEASE}.iso) | ||||
|     ISO="$(echo ${HASHLINE} | awk '{print $NF}' )" | ||||
|     HASH=$(echo ${HASHLINE} | cut -d\  -f1) | ||||
| 
 | ||||
|     HASHLINE=$(wget -q -O- "${URL}/SHA512SUMS" | grep "${RELEASE}.iso") | ||||
|     ISO="$(echo "${HASHLINE}" | awk '{print $NF}')" | ||||
|     HASH=$(echo "${HASHLINE}" | cut -d'\' -f1) | ||||
|     web_get "${URL}/${ISO}" "${VM_PATH}" | ||||
|     check_hash "${ISO}" "${HASH}" | ||||
|     make_vm_config "${ISO}" | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue