| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2023-03-23 00:09:04 -04:00
										 |  |  | source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build.func) | 
					
						
							| 
									
										
										
										
											2024-01-01 12:13:05 -05:00
										 |  |  | # Copyright (c) 2021-2024 tteck | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  | # Author: tteck (tteckster) | 
					
						
							|  |  |  | # License: MIT | 
					
						
							|  |  |  | # https://github.com/tteck/Proxmox/raw/main/LICENSE | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function header_info { | 
					
						
							|  |  |  | clear | 
					
						
							|  |  |  | cat <<"EOF" | 
					
						
							|  |  |  |    ____                      __      | 
					
						
							|  |  |  |   / __ \____ ___  ____ _____/ /___ _ | 
					
						
							|  |  |  |  / / / / __  __ \/ __  / __  / __  / | 
					
						
							|  |  |  | / /_/ / / / / / / /_/ / /_/ / /_/ /  | 
					
						
							|  |  |  | \____/_/ /_/ /_/\__,_/\__,_/\__,_/   | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | EOF | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | header_info | 
					
						
							|  |  |  | echo -e "Loading..." | 
					
						
							|  |  |  | APP="Omada" | 
					
						
							|  |  |  | var_disk="8" | 
					
						
							|  |  |  | var_cpu="2" | 
					
						
							|  |  |  | var_ram="2048" | 
					
						
							| 
									
										
										
										
											2023-06-15 11:32:22 -04:00
										 |  |  | var_os="debian" | 
					
						
							| 
									
										
										
										
											2023-06-25 13:23:26 -04:00
										 |  |  | var_version="12" | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  | variables | 
					
						
							|  |  |  | color | 
					
						
							|  |  |  | catch_errors | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function default_settings() { | 
					
						
							| 
									
										
										
										
											2024-05-07 14:01:21 -04:00
										 |  |  |   CT_TYPE="1" | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  |   PW="" | 
					
						
							|  |  |  |   CT_ID=$NEXTID | 
					
						
							|  |  |  |   HN=$NSAPP | 
					
						
							|  |  |  |   DISK_SIZE="$var_disk" | 
					
						
							|  |  |  |   CORE_COUNT="$var_cpu" | 
					
						
							|  |  |  |   RAM_SIZE="$var_ram" | 
					
						
							|  |  |  |   BRG="vmbr0" | 
					
						
							| 
									
										
										
										
											2023-05-13 21:22:09 -04:00
										 |  |  |   NET="dhcp" | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  |   GATE="" | 
					
						
							| 
									
										
										
										
											2024-01-12 15:00:42 -05:00
										 |  |  |   APT_CACHER="" | 
					
						
							|  |  |  |   APT_CACHER_IP="" | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  |   DISABLEIP6="no" | 
					
						
							|  |  |  |   MTU="" | 
					
						
							|  |  |  |   SD="" | 
					
						
							|  |  |  |   NS="" | 
					
						
							|  |  |  |   MAC="" | 
					
						
							|  |  |  |   VLAN="" | 
					
						
							|  |  |  |   SSH="no" | 
					
						
							|  |  |  |   VERB="no" | 
					
						
							|  |  |  |   echo_default | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function update_script() { | 
					
						
							|  |  |  | header_info | 
					
						
							|  |  |  | if [[ ! -d /opt/tplink ]]; then msg_error "No ${APP} Installation Found!"; exit; fi | 
					
						
							| 
									
										
										
										
											2024-03-01 04:31:17 -05:00
										 |  |  | latest_url=$(curl -fsSL "https://www.tp-link.com/en/support/download/omada-software-controller/" | grep -o 'https://.*x64.deb' | head -n1) | 
					
						
							| 
									
										
										
										
											2024-01-16 05:53:10 -05:00
										 |  |  | latest_version=$(basename "${latest_url}") | 
					
						
							| 
									
										
										
										
											2023-08-09 12:02:56 -04:00
										 |  |  | if [ -z "${latest_version}" ]; then | 
					
						
							| 
									
										
										
										
											2023-08-09 12:26:07 -04:00
										 |  |  |   msg_error "It seems that the server (tp-link.com) might be down. Please try again at a later time." | 
					
						
							| 
									
										
										
										
											2023-08-09 12:02:56 -04:00
										 |  |  |   exit | 
					
						
							|  |  |  | fi | 
					
						
							| 
									
										
										
										
											2024-01-16 05:53:10 -05:00
										 |  |  | echo -e "Updating Omada Controller" | 
					
						
							|  |  |  | wget -qL ${latest_url} | 
					
						
							|  |  |  | dpkg -i ${latest_version} | 
					
						
							|  |  |  | rm -rf ${latest_version} | 
					
						
							|  |  |  | echo -e "Updated Omada Controller" | 
					
						
							| 
									
										
										
										
											2023-03-22 20:48:20 -04:00
										 |  |  | exit | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | start | 
					
						
							|  |  |  | build_container | 
					
						
							|  |  |  | description | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | msg_ok "Completed Successfully!\n" | 
					
						
							|  |  |  | echo -e "${APP} should be reachable by going to the following URL.
 | 
					
						
							|  |  |  |          ${BL}https://${IP}:8043${CL} \n"
 |