From 6f7a1f12de7e162c21bbccd64c07e9e3eea2e774 Mon Sep 17 00:00:00 2001 From: James Antill Date: Mon, 6 Oct 2025 15:53:18 -0400 Subject: [PATCH] log01: Add /usr/local/bin to combineHttpLogs PATH. issue#12833 Signed-off-by: James Antill --- roles/web-data-analysis/files/combineHttpLogs.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/web-data-analysis/files/combineHttpLogs.sh b/roles/web-data-analysis/files/combineHttpLogs.sh index caa52475c1..386a43f305 100644 --- a/roles/web-data-analysis/files/combineHttpLogs.sh +++ b/roles/web-data-analysis/files/combineHttpLogs.sh @@ -24,6 +24,11 @@ shopt -s nullglob export MSGTOPIC_PREFIX=logging.stats export MSGBODY_PRESET="loghost=$(hostname) run_id=$(uuidgen -r)" + +# simple_message_to_bus is in /usr/local/bin which isn't in the default path +# Put it at the back, so it doesn't override anything. +export PATH="$PATH:/usr/local/bin" + simple_message_to_bus combinehttplogs.start # Some constants / standard paths