X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=util-vserver%2Fscripts%2Fvrpm;h=de53ec8b33beb5d99675a505d8c2f21a8c557a5e;hb=27018b98ab81fc9bb8f6ea112045876ce61c2997;hp=a49d750d746498bf6b50782e4f74265022729e3b;hpb=7e1b275be82e65a1ca66daa5ca0783782cfd7686;p=util-vserver.git diff --git a/util-vserver/scripts/vrpm b/util-vserver/scripts/vrpm index a49d750..de53ec8 100755 --- a/util-vserver/scripts/vrpm +++ b/util-vserver/scripts/vrpm @@ -16,9 +16,9 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -: ${UTIL_VSERVER_VARS:=$(dirname $0)/util-vserver-vars} +: ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars} test -e "$UTIL_VSERVER_VARS" || { - echo "Can not find util-vserver installation; aborting..." + echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2 exit 1 } . "$UTIL_VSERVER_VARS" @@ -27,7 +27,7 @@ test -e "$UTIL_VSERVER_VARS" || { function showHelp() { echo \ -$"Usage: $0 * [--all] [--help] [--version] [--unify] -- + +$"Usage: $0 * [--all] [--quiet|-q] [--help] [--version] [--unify] -- + Report bugs to <$PACKAGE_BUGREPORT>." @@ -48,10 +48,14 @@ the GNU General Public License. This program has absolutely no warranty." } do_unify= +is_quiet= declare -a vservers=() while test "$#" -ge 1; do case "$1" in + --quiet|-q) + is_quiet=1 + ;; --all) getAllVservers tmp vservers=( "${vservers[@]}" "${tmp[@]}" ) @@ -71,13 +75,34 @@ while test "$#" -ge 1; do done test "$#" -ge 1 || showHelp 1 >&2 +test "${#vservers[@]}" -ne 1 || is_quiet=1 cnt=0 res=255 + for i in "${vservers[@]}"; do cnt=$[ cnt + 1 ] - "$_NEW_NAMESPACE" "$_VRPM_WORKER" "$i" "$@" + + test -n "$is_quiet" || { + colorize bold echo -n "vrpm: operating on vserver " + colorize bold colorize emph echo "$i" + xtermTitle "vrpm: operating on vserver '$i' [$cnt/${#vservers[@]}]" + } + + if pkgmgmt.isInternal "$i"; then + $_VSERVER "$i" exec rpm "$@" + else + callInNamespace "$i" \ + "$_VNAMESPACE" --new -- "$_VRPM_WORKER" "$i" "$@" + fi res=$? + + test $res -eq 0 -o "$is_quiet" || { + colorize error echo -n $"vrpm failed on vserver '$i' with errorcode $res" + echo + } + + test -n "$is_quiet" || echo done test -z "$do_unify" || echo "unify currently unsupported" >&2