author | wenzelm |
Fri, 27 Jan 2023 15:22:26 +0100 | |
changeset 77108 | 4f68b165d69e |
parent 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*) |
74916 | 9 |
DEST=/p/home/isabelle/html-data/html-data |
17671 | 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 |