From 798015df6fe111a700f7bb825b334c1325032c65 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Tue, 16 Dec 2025 11:49:34 +0100 Subject: [PATCH] fix(miniflux): use systemctl to check service instead of file path (#10024) --- ct/miniflux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/miniflux.sh b/ct/miniflux.sh index c567baa852..a5f303422c 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