mirror of https://github.com/tteck/Proxmox.git
				
				
				
			Update unifi-install.sh
- Code refactoring - MongoDB version 7.0.7
This commit is contained in:
		
							parent
							
								
									8e76d536d8
								
							
						
					
					
						commit
						8a72055ebe
					
				| 
						 | 
					@ -21,26 +21,23 @@ $STD apt-get install -y apt-transport-https
 | 
				
			||||||
$STD apt-get install -y gnupg
 | 
					$STD apt-get install -y gnupg
 | 
				
			||||||
msg_ok "Installed Dependencies"
 | 
					msg_ok "Installed Dependencies"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
msg_info "Installing OpenJDK"
 | 
					msg_info "Installing Eclipse Temurin JRE"
 | 
				
			||||||
wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg
 | 
					wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg
 | 
				
			||||||
echo 'deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main' >/etc/apt/sources.list.d/adoptium.list
 | 
					echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main" >/etc/apt/sources.list.d/adoptium.list
 | 
				
			||||||
$STD apt-get update
 | 
					$STD apt-get update
 | 
				
			||||||
$STD apt-get install -y temurin-17-jre
 | 
					$STD apt-get install -y temurin-17-jre
 | 
				
			||||||
msg_ok "Installed OpenJDK"
 | 
					msg_ok "Installed Eclipse Temurin JRE"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
msg_info "Installing MongoDB"
 | 
					msg_info "Installing MongoDB"
 | 
				
			||||||
libssl=$(curl -fsSL "http://security.ubuntu.com/ubuntu/pool/main/o/openssl/" | grep -o 'libssl1\.1_1\.1\.1f-1ubuntu2\.2[^"]*amd64\.deb' | head -n1)
 | 
					wget -qO- https://www.mongodb.org/static/pgp/server-7.0.asc | gpg --dearmor >/usr/share/keyrings/mongodb-server-7.0.gpg
 | 
				
			||||||
wget -qL http://security.ubuntu.com/ubuntu/pool/main/o/openssl/$libssl
 | 
					echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] http://repo.mongodb.org/apt/debian bookworm/mongodb-org/7.0 main" >/etc/apt/sources.list.d/mongodb-org-7.0.list
 | 
				
			||||||
$STD dpkg -i $libssl
 | 
					 | 
				
			||||||
wget -qO- https://pgp.mongodb.com/server-4.4.asc | gpg --dearmor >/etc/apt/trusted.gpg.d/mongodb-server-4.4.gpg
 | 
					 | 
				
			||||||
echo 'deb [ arch=amd64 signed-by=/etc/apt/trusted.gpg.d/mongodb-server-4.4.gpg ] https://repo.mongodb.org/apt/debian buster/mongodb-org/4.4 main' >/etc/apt/sources.list.d/mongodb-org-4.4.list
 | 
					 | 
				
			||||||
$STD apt-get update
 | 
					$STD apt-get update
 | 
				
			||||||
$STD apt-get install -y mongodb-org
 | 
					$STD apt-get install -y mongodb-org
 | 
				
			||||||
msg_ok "Installed MongoDB"
 | 
					msg_ok "Installed MongoDB"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
msg_info "Installing UniFi Network Application"
 | 
					msg_info "Installing UniFi Network Application"
 | 
				
			||||||
wget -qO /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg
 | 
					wget -qO /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg
 | 
				
			||||||
echo 'deb [ arch=amd64 signed-by=/etc/apt/trusted.gpg.d/unifi-repo.gpg] https://www.ui.com/downloads/unifi/debian stable ubiquiti' >/etc/apt/sources.list.d/100-ubnt-unifi.list
 | 
					echo "deb [ arch=amd64 signed-by=/etc/apt/trusted.gpg.d/unifi-repo.gpg] https://www.ui.com/downloads/unifi/debian stable ubiquiti" >/etc/apt/sources.list.d/100-ubnt-unifi.list
 | 
				
			||||||
$STD apt-get update
 | 
					$STD apt-get update
 | 
				
			||||||
$STD apt-get install -y unifi
 | 
					$STD apt-get install -y unifi
 | 
				
			||||||
msg_ok "Installed UniFi Network Application"
 | 
					msg_ok "Installed UniFi Network Application"
 | 
				
			||||||
| 
						 | 
					@ -49,7 +46,6 @@ motd_ssh
 | 
				
			||||||
customize
 | 
					customize
 | 
				
			||||||
 | 
					
 | 
				
			||||||
msg_info "Cleaning up"
 | 
					msg_info "Cleaning up"
 | 
				
			||||||
rm -rf $libssl
 | 
					 | 
				
			||||||
$STD apt-get autoremove
 | 
					$STD apt-get autoremove
 | 
				
			||||||
$STD apt-get autoclean
 | 
					$STD apt-get autoclean
 | 
				
			||||||
msg_ok "Cleaned"
 | 
					msg_ok "Cleaned"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue