minor cosmetical cleanups
[util-vserver.git] / util-vserver / scripts / vapt-get
1 #! /bin/bash
2 # $Id$
3
4 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 #  
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #  
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #  
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 : ${UTIL_VSERVER_VARS:=$(dirname $0)/util-vserver-vars}
20 test -e "$UTIL_VSERVER_VARS" || {
21     echo "Can not find util-vserver installation; aborting..."
22     exit 1
23 }
24 . "$UTIL_VSERVER_VARS"
25 . "$_LIB_FUNCTIONS"
26
27 function showHelp()
28 {
29     echo "Usage: $0 <vserver-name>* [--all] -- <params>+"
30     exit $1
31 }
32
33 function showVersion()
34 {
35     cat <<EOF 
36 vapt-get 0.23.5 -- apt-get for vservers
37 Copyright (C) 2003 Enrico Scholz
38 This program is free software; you may redistribute it under the terms of
39 the GNU General Public License.  This program has absolutely no warranty.
40 EOF
41     exit $1
42 }
43
44 vservers=
45
46 while test "$#" -ge 1; do
47     case "$1" in
48         --all)
49             getAllVservers tmp
50             vservers="$vservers $tmp";;
51         --)
52             shift; break;;
53         --help)
54             showHelp 0;;
55         --version)
56             showVersion 0;;
57         *)  vservers="$vservers $1";;
58      esac
59      shift
60 done
61
62 test "$#" -ge 1 || showHelp 1 >&2
63
64 cnt=0
65 res=255
66 for i in $vservers; do
67     cnt=$[ cnt + 1 ]
68     _APT_GET=apt-get \
69     "$_NEW_NAMESPACE" "$_VAPT_GET_WORKER" "$i" "$@"
70     res=$?
71 done
72
73 test "$cnt" -ge 0 || echo "No vservers specified" >&2
74 exit $res