From d59c6ef8af6d5950a28b8dbec658b1f078ba1bb6 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Thu, 30 Oct 2025 12:29:50 +0100 Subject: [PATCH] Use STD variable for journalctl commands --- misc/core.func | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/core.func b/misc/core.func index a7225c7d7..ca454d02a 100644 --- a/misc/core.func +++ b/misc/core.func @@ -407,8 +407,8 @@ cleanup_lxc() { if command -v composer &>/dev/null; then composer clear-cache || true; fi if command -v journalctl &>/dev/null; then - journalctl --rotate - journalctl --vacuum-time=10m + $STD journalctl --rotate + $STD journalctl --vacuum-time=10m fi msg_ok "Cleaned" }