| author | haftmann | 
| Wed, 28 Apr 2010 17:04:56 +0200 | |
| changeset 36516 | 8dac276ab10d | 
| parent 31086 | 3e69a25b90a2 | 
| child 36859 | 51af1657263b | 
| permissions | -rwxr-xr-x | 
| 17671 | 1 | #!/usr/bin/env bash | 
| 2 | # | |
| 3 | # $Id$ | |
| 4 | # | |
| 5 | # mirrors the Isabelle website | |
| 6 | ||
| 7 | HOST=$(hostname) | |
| 8 | ||
| 9 | case ${HOST} in
 | |
| 27594 | 10 | sunbroy* | atbroy* | macbroy*) | 
| 17671 | 11 | DEST=/home/html/isabelle/html-data | 
| 12 | ;; | |
| 13 | *.cl.cam.ac.uk) | |
| 14 | USER=paulson | |
| 31086 
3e69a25b90a2
Change to lowercase path names as directed by local pagemasters
 paulson parents: 
27594diff
changeset | 15 | DEST=/anfs/www/html/research/hvg/Isabelle | 
| 17671 | 16 | ;; | 
| 17 | *) | |
| 18 |     echo "Unknown destination directory for ${HOST}"
 | |
| 19 | exit 2 | |
| 20 | ;; | |
| 21 | esac | |
| 22 | ||
| 25463 | 23 | exec $(dirname $0)/isasync $DEST |