build/sbin/sync_site_iri
author ymh@caf4f556-3d62-0410-8435-a86758001935
Thu, 18 Mar 2010 10:53:29 +0000
changeset 171 97141c5a1549
parent 169 2d410dc8c1f3
child 174 53861b8bcaf7
permissions -rwxr-xr-x
create new version

#!/usr/bin/env bash
set -e
if [ -d ~/tmp/site_iri_V$1 ]; then
    rm -fr ~/tmp/site_iri_V$1;
fi

svn export file:///iridata/svn/site_iri/tags/V$1/web ~/tmp/site_iri_V$1

#text2unix ~/tmp/site_iri_V$1

if [ -d ~/tmp/site_iri_V$1 ]; then
	cat <<EOT | rsync -Cvrlz --size-only --delete --filter=". -" ~/tmp/site_iri_V$1/ iri@www.iri.centrepompidou.fr:/home/www/
+ core
P google?.html
P .htpasswd
P .htaccess
P **/wp-config.php
P apps/***
P documents/***
P munin/***
P shotdetect/***
P wiki/***
P wp-content/uploads/***
- wp-content/uploads/***
EOT
fi

if [ -d ~/tmp/site_iri_V$1 ]; then
    echo "Deleting temp export"
    rm -fr ~/tmp/site_iri_V$1;
fi