From 58c7ff1c4d5c90085a051e6f06d9efd506754948 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 10 May 2026 17:43:22 +0200 Subject: [PATCH] Fix non-root user check in qbittorrent run script --- qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run b/qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run index ab84736533..e76642f589 100644 --- a/qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run +++ b/qbittorrent/rootfs/etc/s6-overlay/s6-rc.d/svc-qbittorrent/run @@ -67,7 +67,7 @@ if bashio::config.true 'silent'; then exec >/dev/null 2>&1 fi -if [[ -z ${LSIO_NON_ROOT_USER:-} ]]; then +if [[ -z ${LSIO_NON_ROOT_USER} ]]; then exec s6-setuidgid abc "${QB_BIN}" --webui-port="${WEBUI_PORT}" else exec "${QB_BIN}" --webui-port="${WEBUI_PORT}"