4 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
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.
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.
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.
19 : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
20 test -e "$UTIL_VSERVER_VARS" || {
21 echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
24 . "$UTIL_VSERVER_VARS"
30 $"Usage: $0 <vserver-name>* [--all] [--quiet|-q] [--help] [--version] [--unify] -- <rpm-params>+
32 Report bugs to <$PACKAGE_BUGREPORT>."
37 function showVersion()
40 $"vrpm $PACKAGE_VERSION -- rpm for vservers
41 This program is part of $PACKAGE_STRING
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."
52 declare -a vservers=()
54 while test "$#" -ge 1; do
61 vservers=( "${vservers[@]}" "${tmp[@]}" )
72 *) vservers=( "${vservers[@]}" "$1" )
77 test "$#" -ge 1 || showHelp 1 >&2
78 test "${#vservers[@]}" -ne 1 || is_quiet=1
83 for i in "${vservers[@]}"; do
86 test -n "$is_quiet" || {
87 colorize bold echo -n "vrpm: operating on vserver "
88 colorize bold colorize emph echo "$i"
89 xtermTitle "vrpm: operating on vserver '$i' [$cnt/${#vservers[@]}]"
92 if pkgmgmt.isInternal "$i"; then
93 $_VSERVER "$i" exec rpm "$@"
95 callInNamespace "$i" \
96 "$_VNAMESPACE" --new -- "$_VRPM_WORKER" "$i" "$@"
100 test $res -eq 0 -o "$is_quiet" || {
101 colorize error echo -n $"vrpm failed on vserver '$i' with errorcode $res"
105 test -n "$is_quiet" || echo
108 test -z "$do_unify" || echo "unify currently unsupported" >&2
109 test "$cnt" -ge 0 || echo "No vservers specified" >&2