From af6beaff1e2ef31c7ad24662691cc663a0b2e897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 22 Jun 2026 19:25:56 +0200 Subject: [PATCH] =?UTF-8?q?revert:=20remove=20SYSTEMD=5FCOLORS/SYSTEMD=5FP?= =?UTF-8?q?AGER=20from=20logs=20=E2=80=94=20no=20effect=20without=20TTY?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- bin/stacks | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/stacks b/bin/stacks index f5b9444..98538f2 100755 --- a/bin/stacks +++ b/bin/stacks @@ -517,7 +517,7 @@ EOF ;; logs) - SYSTEMD_COLORS=1 SYSTEMD_PAGER=cat journalctl -u stacks-update.service "${@}" 2>/dev/null \ + journalctl -u stacks-update.service "${@}" --no-pager 2>/dev/null \ || warn "No update logs found (is the service installed?)" ;; @@ -674,7 +674,7 @@ EOF ;; logs) - SYSTEMD_COLORS=1 SYSTEMD_PAGER=cat journalctl -u stacks-backup.service "${@}" 2>/dev/null \ + journalctl -u stacks-backup.service "${@}" --no-pager 2>/dev/null \ || warn "No backup logs found (is the service installed?)" ;;