Admin/mirror-website
author blanchet
Mon, 30 Aug 2010 12:09:57 +0200
changeset 38898 a243f8883e8e
parent 36859 51af1657263b
permissions -rwxr-xr-x
execute actions in same order as specified on command line

#!/usr/bin/env bash
#
# mirrors the Isabelle website

HOST=$(hostname)

case ${HOST} in
  sunbroy* | atbroy* | macbroy*)
    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

exec $(dirname $0)/isasync $DEST