author | wenzelm |
Wed, 15 Aug 2018 16:09:44 +0200 | |
changeset 68750 | 7087748996af |
parent 54674 | dae47f997268 |
child 74916 | 79ceca45fcbc |
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 |
|
68750 | 8 |
sunbroy* | atbroy* | macbroy* | lxbroy* | lxcisa*) |
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 |