Files
docker-mods-uptime-kuma-tim…/root/etc/services.d/stdout-logs/run
T
Bryce Chidester b752310808 Remove extraneous -f between tail file arguments
tail requires the -f/-F option to be passed just once, not between every log file.
2022-07-11 10:57:17 -07:00

7 lines
139 B
Plaintext

#!/usr/bin/with-contenv bash
TAIL_LOGS=$(echo "$LOGS_TO_STDOUT" | sed 's#|# #g')
echo "Executing: tail -F $TAIL_LOGS"
tail -F $TAIL_LOGS