#!/usr/bin/env bash
set -e
if [ -d ~/tmp/blinkster_V$1 ]; then
rm -fr ~/tmp/blinkster_V$1;
fi
svn export file:///iridata/svn/blinkster/tags/V$1/web ~/tmp/blinkster_V$1
#text2unix ~/tmp/blinkster_V$1
if [ -d ~/tmp/blinkster_V$1 ]; then
cat <<EOT | rsync -Cvrlz --delete --filter=". -" ~/tmp/blinkster_V$1/ web.iri.centrepompidou.fr:/iridata/www/web/blinkster/
P .htpasswd
P .htaccess
P blinkster/.htaccess
P blinkster/config.py
P robots.txt
P log/***
P index/***
P static/media/***
EOT
fi
if [ -d ~/tmp/blinkster_V$1 ]; then
echo "Deleting temp export"
rm -fr ~/tmp/blinkster_V$1;
fi
ssh web.iri.centrepompidou.fr sudo apache2ctl restart