Compare commits

...

2 Commits

Author SHA1 Message Date
93815cbe33 bump java 21 2025-12-21 22:55:28 +01:00
9258fa684a unifi: remove mongodb support | bump to java 21 2025-12-21 22:54:56 +01:00
2 changed files with 16 additions and 10 deletions

View File

@ -28,6 +28,8 @@ function update_script() {
exit exit
fi fi
JAVA_VERSION="21" setup_java
msg_info "Updating ${APP}" msg_info "Updating ${APP}"
$STD apt update --allow-releaseinfo-change $STD apt update --allow-releaseinfo-change
$STD apt install -y unifi $STD apt install -y unifi

View File

@ -17,7 +17,6 @@ msg_info "Installing Dependencies"
$STD apt install -y apt-transport-https $STD apt install -y apt-transport-https
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
JAVA_VERION="17" setup_java
setup_deb822_repo \ setup_deb822_repo \
"unifi" \ "unifi" \
"https://dl.ui.com/unifi/unifi-repo.gpg" \ "https://dl.ui.com/unifi/unifi-repo.gpg" \
@ -26,17 +25,22 @@ setup_deb822_repo \
"ubiquiti" \ "ubiquiti" \
"amd64" "amd64"
if ! grep -q -m1 'avx[^ ]*' /proc/cpuinfo; then JAVA_VERSION="21" setup_java
msg_warn "No AVX Support Detected. MongoDB v4.4 will be installed"
if ! dpkg -l | grep -q "libssl1.1"; then if lscpu | grep -q 'avx'; then
curl -fsSL "https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u4_amd64.deb" -o "libssl1.1_1.1.1w-0+deb11u4_amd64.deb" MONGO_VERSION="8.0" setup_mongodb
$STD dpkg -i libssl1.1_1.1.1w-0+deb11u4_amd64.deb
fi
MONGO_VERSION="4.4" setup_mongodb
else else
MONGO_VERSION="7.0" setup_mongodb msg_error "No AVX detected (CPU-Flag)! We have discontinued support for this. You are welcome to try it manually with a Debian LXC, but due to the many issues with Unifi, we currently only support AVX CPUs."
exit 10
fi
if ! dpkg -l | grep -q 'libssl1.1'; then
msg_info "Installing libssl (if needed)"
curl -fsSL "https://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.1_1.1.1w-0+deb11u4_amd64.deb" -o "/tmp/libssl.deb"
$STD dpkg -i /tmp/libssl.deb
rm -f /tmp/libssl.deb
msg_ok "Installed libssl1.1"
fi fi
msg_ok "Installed MongoDB"
msg_info "Installing UniFi Network Server" msg_info "Installing UniFi Network Server"
$STD apt install -y unifi $STD apt install -y unifi