From fb4c4c4da1aae362db0eceee1a85d4fdf72bfd6f Mon Sep 17 00:00:00 2001 From: Alex Phillips Date: Fri, 17 Dec 2021 11:16:13 -0500 Subject: [PATCH] fixed sed delimiter to prevent interferring with paths --- root/etc/services.d/stdout-logs/run | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/root/etc/services.d/stdout-logs/run b/root/etc/services.d/stdout-logs/run index fe09ccf..8527f77 100644 --- a/root/etc/services.d/stdout-logs/run +++ b/root/etc/services.d/stdout-logs/run @@ -1,5 +1,6 @@ #!/usr/bin/with-contenv bash -$TAIL_LOGS=$(echo $LOGS_TO_STDOUT | sed 's/|/ -f /g') +$TAIL_LOGS=$(echo $LOGS_TO_STDOUT | sed 's#|# -f #g') +echo "Executing: tail -f $TAIL_LOGS" tail -f $TAIL_LOGS