cleanup console output

This commit is contained in:
Asif Bacchus 2019-10-18 01:55:50 -06:00
parent bfdb85b384
commit 962177dda5
1 changed files with 3 additions and 1 deletions

View File

@ -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>%${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