Fix MongoDB install in Unifi script (#564)

This commit is contained in:
Håvard Gjøby Thom 2024-11-28 12:13:46 +01:00 committed by GitHub
parent 0afeac4266
commit e786b09199
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,7 +28,7 @@ $STD apt-get update
$STD apt-get install -y temurin-17-jre $STD apt-get install -y temurin-17-jre
msg_ok "Installed Eclipse Temurin JRE" msg_ok "Installed Eclipse Temurin JRE"
if grep -q 'avx' /proc/cpuinfo; then if ! grep -q -m1 'avx[^ ]*' /proc/cpuinfo; then
msg_ok "No AVX Support Detected" msg_ok "No AVX Support Detected"
msg_info "Installing MongoDB 4.2" msg_info "Installing MongoDB 4.2"
if ! dpkg -l | grep -q "libssl1.1"; then if ! dpkg -l | grep -q "libssl1.1"; then