~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/apply-changeset

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 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-20050914112720-c66a21de86eafa6e
trim fai cribbage

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
 
  # scan through the parameters, finding the CHANGESET parameter
13
 
  parms=''
14
 
  until [ -z "$1" ]  # Until all parameters used up...
15
 
  do
16
 
    if expr $1 : '-' > /dev/null ; then
17
 
      parms="$parms $1"
18
 
      shift
19
 
    else
20
 
      if [ -f "$1" ] ; then
21
 
        tmpdir=`aba_mktempdir`
22
 
        tar -x -z --strip-path=1 -f "$1" -C "$tmpdir"
23
 
        if [ "$?" != "0" ] ; then
24
 
          /bin/rm -rf "$tmpdir"
25
 
          exit 2
26
 
        fi
27
 
        parms="$parms $tmpdir"
28
 
        shift
29
 
      else
30
 
        parms="$parms $1"
31
 
        tmpdir=''
32
 
        shift
33
 
      fi
34
 
      parms="$parms $@"
35
 
      break
36
 
    fi
37
 
  done  
38
 
  tla apply-changeset $parms
39
 
  result=$?
40
 
  if [ ! -z "$tmpdir" ] ; then
41
 
    /bin/rm -rf "$tmpdir"
42
 
  fi
43
 
  exit $result
44
 
}
45
 
 
46
 
# one-liner description for aba help
47
 
cmd_desc()
48
 
{
49
 
    aba_desc $(basename $0) "apply a whole-tree changeset (directory or tar.gz)"
50
 
}
51
 
 
52
 
# short help for aba command -h, --help
53
 
cmd_help()
54
 
{
55
 
    tla apply-changeset -h
56
 
    echo "This is the aba version and additionally accepts"
57
 
    echo "a tar.gz as the CHANGESET parameter, which is then"
58
 
    echo "unpacked transparently."
59
 
    echo ""
60
 
}
61
 
 
62
 
# extended help for aba command -H or aba help command
63
 
cmd_ext_help()
64
 
{
65
 
    tla apply-changeset -H
66
 
    echo "This is the aba version and additionally accepts"
67
 
    echo "a tar.gz as the CHANGESET parameter, which is then"
68
 
    echo "unpacked transparently."
69
 
    echo ""
70
 
}       
71
 
 
72
 
aba_run "$@"
73
 
 
74
 
# arch-tag: abb83fcf-a20b-4bbc-9ec0-24123dc5054a