mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Update magicmirror-v5-install.sh
correct missing network retries
This commit is contained in:
		
							parent
							
								
									15c6c046ab
								
							
						
					
					
						commit
						85895bffa7
					
				| 
						 | 
					@ -47,15 +47,18 @@ function msg_error() {
 | 
				
			||||||
msg_info "Setting up Container OS "
 | 
					msg_info "Setting up Container OS "
 | 
				
			||||||
sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
 | 
					sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
 | 
				
			||||||
locale-gen >/dev/null
 | 
					locale-gen >/dev/null
 | 
				
			||||||
while [ "$(hostname -I)" = "" ]; do
 | 
					for ((i=RETRY_NUM; i>0; i--)); do
 | 
				
			||||||
 | 
					  if [ "$(hostname -I)" != "" ]; then
 | 
				
			||||||
 | 
					    break
 | 
				
			||||||
 | 
					  fi
 | 
				
			||||||
  echo 1>&2 -en "${CROSS}${RD} No Network! "
 | 
					  echo 1>&2 -en "${CROSS}${RD} No Network! "
 | 
				
			||||||
  sleep $RETRY_EVERY
 | 
					  sleep $RETRY_EVERY
 | 
				
			||||||
        ((NUM--))
 | 
					 | 
				
			||||||
        if [ $NUM -eq 0 ]; then
 | 
					 | 
				
			||||||
                echo 1>&2 -e "${CROSS}${RD} No Network After $RETRY_NUM Tries${CL}"
 | 
					 | 
				
			||||||
                exit 1
 | 
					 | 
				
			||||||
        fi
 | 
					 | 
				
			||||||
done
 | 
					done
 | 
				
			||||||
 | 
					if [ "$(hostname -I)" = "" ]; then
 | 
				
			||||||
 | 
					  echo 1>&2 -e "\n${CROSS}${RD} No Network After $RETRY_NUM Tries${CL}"
 | 
				
			||||||
 | 
					  echo -e " 🖧  Check Network Settings"
 | 
				
			||||||
 | 
					  exit 1
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
msg_ok "Set up Container OS"
 | 
					msg_ok "Set up Container OS"
 | 
				
			||||||
msg_ok "Network Connected: ${BL}$(hostname -I)"
 | 
					msg_ok "Network Connected: ${BL}$(hostname -I)"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue