#!/bin/sh
# 2004-2005 (c) Etersoft www.etersoft.ru
# Author: Vitaly Lipatov <lav@etersoft.ru>
# Public domain

# load common functions, compatible with local and installed script
. `dirname $0`/../share/eterbuild/functions/common

if [ "$1" = "-h" ]; then
	echo "rpmU - the same as [sudo] rpm -Uvh - update package"
	exit 0
fi

#set -x
$SUDO rpm -Uvh "$@"
