0
|
1 |
#!/usr/bin/env bash
|
|
2 |
set -e
|
|
3 |
if [ -d ~/tmp/blinkster_V$1 ]; then
|
|
4 |
rm -fr ~/tmp/blinkster_V$1;
|
|
5 |
fi
|
|
6 |
|
|
7 |
hg archive -r V$1 ~/tmp/blinkster_V$1
|
|
8 |
|
|
9 |
#text2unix ~/tmp/blinkster_V$1
|
|
10 |
|
|
11 |
if [ -d ~/tmp/blinkster_V$1 ]; then
|
|
12 |
cat <<EOT | rsync -Cvrlz --delete --filter=". -" ~/tmp/blinkster_V$1/web/ web.iri.centrepompidou.fr:/iridata/www/web/blinkster/
|
|
13 |
+ core
|
|
14 |
P .htpasswd
|
|
15 |
P .htaccess
|
|
16 |
P blinkster/.htaccess
|
|
17 |
P blinkster/config.py
|
|
18 |
P robots.txt
|
|
19 |
P env/***
|
|
20 |
P log/***
|
|
21 |
P index/***
|
|
22 |
P static/media/***
|
|
23 |
EOT
|
|
24 |
fi
|
|
25 |
|
|
26 |
if [ -d ~/tmp/blinkster_V$1 ]; then
|
|
27 |
echo "Deleting temp export"
|
|
28 |
rm -fr ~/tmp/blinkster_V$1;
|
|
29 |
fi
|
|
30 |
|
|
31 |
ssh web.iri.centrepompidou.fr sudo apache2ctl restart
|