From 962177dda55a5b1ef25e0a56ddadb5feff3fb06d Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 18 Oct 2019 01:55:50 -0600 Subject: [PATCH] cleanup console output --- build/entrypoint.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/entrypoint.sh b/build/entrypoint.sh index 23ba40d..1fd6d2c 100755 --- a/build/entrypoint.sh +++ b/build/entrypoint.sh @@ -23,8 +23,9 @@ fi # update HTTPS redirect port if SSL server test block exists if [ -f "/etc/nginx/sites/note" ]; then - printf "\nUpdating port redirects...\n" + printf "Updating port redirects...\n" sed -i -e "s%%${HTTPS_PORT}%" /etc/nginx/sites/05-test_secured.conf.disabled + printf "done\n" fi # activate HSTS @@ -78,6 +79,7 @@ elif [ "$TLS13_ONLY" = TRUE ]; then fi # execute commands passed to this container +printf "\nSetup complete...Container ready...\n" exec "$@" #EOF \ No newline at end of file