#!/bin/sh
# 2004 (c) Etersoft www.etersoft.ru
# Public domain

SUDO="sudo"
if [ $UID = "0" ]; then
	SUDO=""
fi
#set -x
$SUDO rpm -Uvh "$@"
