From 7759ecf7ddc1bbd698140f3ab2434608253785a2 Mon Sep 17 00:00:00 2001 From: tteckster Date: Wed, 28 Feb 2024 09:06:25 -0500 Subject: [PATCH] Update unifi-install.sh update libssl --- install/unifi-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/unifi-install.sh b/install/unifi-install.sh index 9ff1d08f..32327d4d 100644 --- a/install/unifi-install.sh +++ b/install/unifi-install.sh @@ -29,8 +29,8 @@ $STD apt-get install -y temurin-17-jre msg_ok "Installed OpenJDK" msg_info "Installing MongoDB" -wget -qL http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.21_amd64.deb -$STD dpkg -i libssl1.1_1.1.1f-1ubuntu2.21_amd64.deb +wget -qL http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb +$STD dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb 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 @@ -48,7 +48,7 @@ motd_ssh customize msg_info "Cleaning up" -rm -rf libssl1.1_1.1.1f-1ubuntu2.21_amd64.deb +rm -rf libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb $STD apt-get autoremove $STD apt-get autoclean msg_ok "Cleaned"