From 9f4cccfc68a0b76fdc46f3f686d5fce742a2e5c8 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Mon, 15 Dec 2025 21:49:08 +0100 Subject: [PATCH] homarr: quickfix disable nginx --- ct/homarr.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ct/homarr.sh b/ct/homarr.sh index 275ff2944..32664defc 100644 --- a/ct/homarr.sh +++ b/ct/homarr.sh @@ -34,6 +34,8 @@ function update_script() { systemctl stop redis-server msg_ok "Services Stopped" + { systemctl is-enabled nginx >/dev/null 2>&1 && sudo systemctl disable --now nginx >/dev/null 2>&1; } || true + if ! { grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr/.env 2>/dev/null || grep -q '^REDIS_IS_EXTERNAL=' /opt/homarr.env 2>/dev/null; }; then DEBIAN_VERSION=$(cat /etc/debian_version 2>/dev/null | cut -d'.' -f1) if [[ -n "$DEBIAN_VERSION" ]] && [[ "$DEBIAN_VERSION" -lt 13 ]]; then @@ -46,6 +48,7 @@ function update_script() { exit fi msg_info "Fixing old structure" + systemctl disable nginx -q --now # fix musl issues because homarr compiles on alpine not debian soure: https://github.com/alexander-akhmetov/python-telegram/issues/3 $STD apt install -y musl-dev ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1