diff options
author | Lukas Schauer | 2021-04-06 19:44:22 +0200 |
---|---|---|
committer | Lukas Schauer | 2021-04-06 19:44:22 +0200 |
commit | 58a6e71c844ae16502fd996859b14a6e25b838ee (patch) | |
tree | 44400b654b0e0064db3d4f441ab7b954906bfb63 | |
parent | 1842078250385cf4ef814761054680eda846e825 (diff) |
disable unnecessary agent forwarding
-rwxr-xr-x | deploy-staging.sh | 4 | ||||
-rwxr-xr-x | deploy.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/deploy-staging.sh b/deploy-staging.sh index d6a3cc2..1ed2b40 100755 --- a/deploy-staging.sh +++ b/deploy-staging.sh @@ -46,7 +46,7 @@ fi for host in streaming.test.c3voc.de; do echo "deploying to $host" - ssh -A voc@$host 'sudo sh' << EOT + ssh voc@$host 'sudo sh' << EOT cd /srv/nginx/streaming-website echo "updating code" @@ -66,4 +66,4 @@ echo "clearing cache" ./clear_cache EOT echo "deploying to $host done" -done
\ No newline at end of file +done @@ -46,7 +46,7 @@ fi for host in lb.dus.c3voc.de lb.alb.c3voc.de lb.dort.c3voc.de; do echo "deploying to $host" -ssh -A voc@$host 'sudo sh' << EOT +ssh voc@$host 'sudo sh' << EOT cd /srv/nginx/streaming-website echo "updating code" |