Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh
progname="${0##*/}"
warn ()
{
[ "$1" ] && echo >&2
[ "$1" ] && echo "$progname: $1" >&2
[ "$1" ] && echo >&2
}
fatal ()
{
warn "$2"
exit "$1"
}
usage ()
{
cat <<EOF
Usage: $progname command lustretag [other tags]
where command is checkout, rtag, tag, or update
where lustretag is a logical tag across the modules
EOF
}
case "$1" in
'')
warn "a command is required."
usage >&2
exit 1
;;
--help | -h)
usage
exit 0
;;
checkout | co | get | rtag | rt | rfreeze | tag | ta | freeze | update | up | upd)
cvscommand="$1"
;;
*)
usage >&2
exit 1
;;
esac
case "$2" in
'')
warn "a lustretag is required."
usage >&2
exit 1
;;
--help | -h)
usage
exit 0
;;
# this is the branch table
# keep this list sorted alphabetically!
b1_4)
portalstag="HEAD"
lustretag="b1_4"
;;
b1_4_bgl)
portalstag="b1_4_bgl"
lustretag="b1_4_bgl"
;;
b_cray)
portalstag="HEAD"
lustretag="b_cray"
;;
HEAD)
portalstag="HEAD"
lustretag="HEAD"
;;
*)
fatal 1 "This script does not contain branch information for $2. Please update the branch table if necessary."
;;
esac
cvs $cvscommand -r $portalstag portals
cvs $cvscommand -r $lustretag -d lustre lustre-core