Admin/mirror-main
author kleing
Mon, 21 Jun 2004 10:25:57 +0200
changeset 14981 e73f8140af78
parent 14229 bf89038cf551
child 16278 dda44b201c4d
permissions -rwxr-xr-x
Merged in license change from Isabelle2004

#!/usr/bin/env bash
#
# $Id$
#
# Mirrors the Isabelle home page (those directly on http://isabelle.in.tum.de)
# It does *not* mirror the Isabelle distribution pages and downloads. There
# is a separate utility (mirror-dist) for that.
#
# Usage: mirror-main
#

HOST=$(hostname)

case ${HOST} in
  atbroy1)
    DEST=/home/html/isabelle/html-data
    ;;
  *.cl.cam.ac.uk)
    USER=paulson
    DEST=/anfs/www/html/Research/HVG/Isabelle
    ;;
  *)
    echo "Unknown destination directory for ${HOST}"
    exit 2
    ;;
esac

rsync --rsh ssh --rsync-path /usr/local/dist/bin/rsync -va \
  $USER@sunbroy2.informatik.tu-muenchen.de:/usr/proj/isabelle-repository/www/. $DEST/.