| author | haftmann | 
| Sat, 19 Jul 2014 18:30:42 +0200 | |
| changeset 57576 | 083dfad2727c | 
| parent 54674 | dae47f997268 | 
| child 68750 | 7087748996af | 
| permissions | -rwxr-xr-x | 
| 17671 | 1 | #!/usr/bin/env bash | 
| 2 | # | |
| 3 | # mirrors the Isabelle website | |
| 4 | ||
| 5 | HOST=$(hostname) | |
| 6 | ||
| 7 | case ${HOST} in
 | |
| 54674 
dae47f997268
recover 175b43e0b9ce from lost update in cc126144f662;
 wenzelm parents: 
54636diff
changeset | 8 | sunbroy* | atbroy* | macbroy* | lxbroy*) | 
| 17671 | 9 | DEST=/home/html/isabelle/html-data | 
| 10 | ;; | |
| 11 | *.cl.cam.ac.uk) | |
| 12 | USER=paulson | |
| 54636 | 13 | DEST=/anfs/bigdisc/lp15/Isabelle | 
| 17671 | 14 | ;; | 
| 15 | *) | |
| 16 |     echo "Unknown destination directory for ${HOST}"
 | |
| 17 | exit 2 | |
| 18 | ;; | |
| 19 | esac | |
| 20 | ||
| 25463 | 21 | exec $(dirname $0)/isasync $DEST |