diff options
author | MaZderMind | 2016-12-28 17:36:05 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-28 17:36:05 +0100 |
commit | 0fec82ef10af44f53640bec4e472d374a9f8f5f3 (patch) | |
tree | e6059037d2e1f992f936838b5cc4ea458aa8f6e3 /deploy.sh | |
parent | 40bff62daf79cb8e1507c9f93d517b728bcfbf14 (diff) |
re-download schedule after deploy
Diffstat (limited to '')
-rwxr-xr-x | deploy.sh | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -44,12 +44,21 @@ for host in lb.dus.c3voc.de lb.alb.c3voc.de; do echo "deploying to $host" ssh -A voc@$host 'sudo sh' << EOT cd /srv/nginx/streaming-website + +echo "updating code" git fetch origin git reset --hard HEAD git checkout $DEPLOY_BRANCH git reset --hard origin/$DEPLOY_BRANCH + +echo "fixing permissions" chown -R voc:staff . chown -R downloader configs + +echo "re-downloading schedules" +sudo -udownloader php index.php download + +echo "clearing cache" ./clear_cache EOT echo "deploying to $host done" |