Mercurial > p > roundup > code
changeset 7835:c6fcc8ba478a
fix: log arguments passed to docker start script to stdout.
When trying to get this working under kubernetes the logs weren't
reporting the arguments passed to the script.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 25 Mar 2024 22:33:24 -0400 |
| parents | dbeb6bf056c7 |
| children | 219fc5804345 |
| files | scripts/Docker/roundup_start |
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/Docker/roundup_start Sun Mar 24 15:29:55 2024 -0400 +++ b/scripts/Docker/roundup_start Mon Mar 25 22:33:24 2024 -0400 @@ -30,6 +30,8 @@ might_be_interactive="false" fi +printf "Starting Roundup with arguments: $@" + for tracker_spec in "$@"; do # IFS== set a=b doesn't just assign $1 and $2 in busybox ash # it also clobbers '$@'. 'printf mumble | read' starts read in a
