use modern '--help' & '--version' output
[util-vserver.git] / util-vserver / scripts / vrpm
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 \
30 $"Usage: $0 <vserver-name>* [--all] [--help] [--version] [--unify] -- <rpm-params>+
31
32 Report bugs to <$PACKAGE_BUGREPORT>."
33
34     exit $1
35 }
36
37 function showVersion()
38 {
39     echo \
40 $"vrpm $PACKAGE_VERSION -- rpm for vservers
41 This program is part of $PACKAGE_STRING
42
43 Copyright (C) 2003 Enrico Scholz
44 This program is free software; you may redistribute it under the terms of
45 the GNU General Public License.  This program has absolutely no warranty."
46     
47     exit $1
48 }
49
50 do_unify=
51 declare -a vservers=()
52
53 while test "$#" -ge 1; do
54     case "$1" in
55         --all)
56             getAllVservers tmp
57             vservers=( "${vservers[@]}" "${tmp[@]}" )
58             ;;
59         --unify)
60             do_unify=1
61             ;;
62         --)
63             shift; break;;
64         --help)
65             showHelp 0;;
66         --version)
67             showVersion 0;;
68         *)  vservers=( "${vservers[@]}" "$1" )
69      esac
70      shift
71 done
72
73 test "$#" -ge 1 || showHelp 1 >&2
74
75 cnt=0
76 res=255
77 for i in "${vservers[@]}"; do
78     cnt=$[ cnt + 1 ]
79     "$_NEW_NAMESPACE" "$_VRPM_WORKER" "$i" "$@"
80     res=$?
81 done
82
83 test -z "$do_unify" || echo "unify currently unsupported" >&2
84 test "$cnt" -ge 0   || echo "No vservers specified" >&2
85 exit $res