From bde63a9c7b86357840805845aa56fba1244e64ea Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 16 Dec 2025 11:08:25 +0100 Subject: [PATCH] fix(miniflux): use systemctl to check service instead of file path The miniflux.service file is installed by the deb package at /usr/lib/systemd/system/ not /etc/systemd/system/, causing the update script to fail with 'No Miniflux Installation Found!'. Using 'systemctl is-enabled' is more robust and works regardless of where the service file is located. --- ct/miniflux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/miniflux.sh b/ct/miniflux.sh index c567baa85..a5f303422 100644 --- a/ct/miniflux.sh +++ b/ct/miniflux.sh @@ -23,7 +23,7 @@ function update_script() { header_info check_container_storage check_container_resources - if [[ ! -f /etc/systemd/system/miniflux.service ]]; then + if ! systemctl -q is-enabled miniflux 2>/dev/null; then msg_error "No ${APP} Installation Found!" exit fi