summaryrefslogtreecommitdiffstats
blob: 0d44f565732658311ad47edb45ee43904c991e32 (plain)
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
#!/bin/bash
# vim: number

# docbook-xsl-update - Update environment to latest docbook-xsl snapshot
# $Id: docbook-xsl-update 6565 2007-01-29 23:00:16Z xmldoc $

if [ -z $DOCBOOK_MIRROR ]; then
  myhost=docbook.xml-doc.org:5873;
else
  myhost=$DOCBOOK_MIRROR;
fi

mydir=$(readlink -f $(dirname $0))
mydocbook_xsl_base=$(readlink -f $(dirname $0)/../..)

if [ ! -f $mydocbook_xsl_base/VERSION ]; then 
  cat <<- EOF
$(basename $0): error: not in snapshot directory. Stopping.

The $(basename $0) script must be installed within its original
location in the tools/bin directory in the docbook-xsl distribution.
EOF
  exit 1
fi

usage="Usage:

  $(basename $0) [-h HOST[:PORT]]

  -h HOST[:PORT]  Specifies the rsync host and port number to use.
                  If not specified, uses the value of the
                  \$DOCBOOK_MIRROR environment variable. If that
                  environment variable is not specified, defaults
                  to a hard-coded value.

"

while getopts "h:" opt; do
  case $opt in
    h  ) myhost=$OPTARG ;;
    \? ) printf "$usage"
         printf "$opts_admon"
         exit 1 ;;
  esac
done

shift $(($OPTIND - 1))

if [ -z $myhost ]; then
  myhost=$DOCBOOK_MIRROR
fi

rsync -auv rsync://$myhost/xsl $mydocbook_xsl_base