~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/mirrors

  • Committer: Robert Collins
  • Date: 2005-09-13 11:20:11 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050913112010-ffd55901ae7f0791
determine version-0 ancestors from a tree when possible

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
## Copyright (C) 2004 Aaron Bentley
 
3
##
 
4
## See the file "COPYING" for further information about
 
5
## the copyright and warranty status of this work.
 
6
 
 
7
. "$abadir/aba-lib"
 
8
 
 
9
# executes the command ("$@" are the arguments after the command name)
 
10
cmd_exec()
 
11
{
 
12
   options="remote local"
 
13
   . "$abadir/getopt"  
 
14
 
 
15
   if [ -z "$remote" ] && [ -z "$local" ]; then
 
16
     remote="yes"
 
17
     local="yes"
 
18
   fi
 
19
   if [ -n "$local" ]; then archm '-SOURCE' $1; fi
 
20
   if [ -n "$remote" ]; then archm '-MIRROR' $1; fi
 
21
}
 
22
 
 
23
archm()
 
24
{
 
25
   tla archives --names $2|grep -- $1|sed -e "s/$1//"
 
26
}
 
27
 
 
28
# one-liner description for aba help
 
29
cmd_desc()
 
30
{
 
31
    aba_desc $(basename $0) "lists all archives which have mirrors"
 
32
}
 
33
 
 
34
# short help for aba command -h, --help
 
35
cmd_help()
 
36
{
 
37
    cat <<EOH
 
38
lists all archives which have mirrors
 
39
usage: $abaname $(basename $0) [options] [search regular expression]
 
40
 
 
41
  -h, --help            Display a help message and exit.
 
42
  -H                    Display a verbose help message and exit.
 
43
  --remote              Display archives that have remote mirrors (have -SOURCE)
 
44
  --local               Display archives that have local mirrors (have -MIRROR)
 
45
 
 
46
Print a list of registered archives which have known mirrors.
 
47
 
 
48
if [search regex] is given then only archives with names that match.
 
49
[search regex] will be shown
 
50
 
 
51
EOH
 
52
}
 
53
 
 
54
# extended help for aba command -H or aba help command
 
55
cmd_ext_help()
 
56
{
 
57
    cat <<EOH
 
58
EOH
 
59
}       
 
60
 
 
61
aba_run "$@"
 
62
# arch-tag: mirrors by Aaron Bentley  (20:32 Feb 25 2004)