Admin/mirror-main
author haftmann
Tue, 27 Sep 2005 15:30:37 +0200
changeset 17671 e9e341bc7d42
parent 16573 cc86fd4eeee4
permissions -rwxr-xr-x
website preparation for Isabelle2005

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

HOST=$(hostname)

case ${HOST} in
  sunbroy2)
    DEST=/home/html/isabelle/html-data
    ;;
  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

echo "Warning: this script now mirrors the *complete* Isabelle site"

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