From 5c3d76c66061c2be616de5f50ac81328f21a5353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 7 Apr 2017 12:27:30 +0200 Subject: [PATCH] Added echo command to deploy.sh We had a problem where the 'docker exec' command would hang, and having an explicit "I'm now doing this thing" in the console helps analyse this. --- deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy.sh b/deploy.sh index 52c21fb..657cc09 100755 --- a/deploy.sh +++ b/deploy.sh @@ -130,6 +130,7 @@ echo "===================================================================" echo "NOTE: If you want to edit config_local.py on the server, do so now." echo "NOTE: Press [ENTER] to continue and restart the server process." read dummy +echo "Gracefully restarting server process" ${SSH} docker exec ${DOCKER_NAME} apache2ctl graceful echo "Server process restarted"