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