| author | ballarin |
| Thu, 10 Jul 2008 10:58:36 +0200 | |
| changeset 27517 | c055e1d49285 |
| parent 25463 | 8b9c4582795a |
| child 27594 | 86db6468145d |
| 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
|
|
10 |
sunbroy2) |
|
11 |
DEST=/home/html/isabelle/html-data |
|
12 |
;; |
|
| 25463 | 13 |
atbroy*) |
| 17671 | 14 |
DEST=/home/html/isabelle/html-data |
15 |
;; |
|
16 |
*.cl.cam.ac.uk) |
|
17 |
USER=paulson |
|
18 |
DEST=/anfs/www/html/Research/HVG/Isabelle |
|
19 |
;; |
|
20 |
*) |
|
21 |
echo "Unknown destination directory for ${HOST}"
|
|
22 |
exit 2 |
|
23 |
;; |
|
24 |
esac |
|
25 |
||
| 25463 | 26 |
exec $(dirname $0)/isasync $DEST |