Skip to content

Commit

Permalink
Fix MongoDB install in Unifi script (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
havardthom authored Nov 28, 2024
1 parent 0afeac4 commit e786b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/unifi-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $STD apt-get update
$STD apt-get install -y temurin-17-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_info "Installing MongoDB 4.2"
if ! dpkg -l | grep -q "libssl1.1"; then
Expand Down

0 comments on commit e786b09

Please sign in to comment.