From 868b29abc527c679288e8c9d8b5928c57d1f9494 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 18 Oct 2019 02:01:47 -0600 Subject: [PATCH] more console output cleanup --- build/entrypoint.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/entrypoint.sh b/build/entrypoint.sh index 1fd6d2c..0a92819 100755 --- a/build/entrypoint.sh +++ b/build/entrypoint.sh @@ -12,18 +12,18 @@ printf "done\n" # update access log global preference if [ "$ACCESS_LOG" = "OFF" ]; then - printf "Turning access log OFF..." + printf "Turning access log OFF... " sed -i -e "s%%OFF%" /etc/nginx/nginx.conf printf "done\n" elif [ "$ACCESS_LOG" = "ON" ]; then - printf "Turning access log ON..." + printf "Turning access log ON... " sed -i -e "s%%/var/log/nginx/access.log combined%" /etc/nginx/nginx.conf printf "done\n" fi # update HTTPS redirect port if SSL server test block exists if [ -f "/etc/nginx/sites/note" ]; then - printf "Updating port redirects...\n" + printf "Updating port redirects... " sed -i -e "s%%${HTTPS_PORT}%" /etc/nginx/sites/05-test_secured.conf.disabled printf "done\n" fi