#!/bin/sh
if [ -f /etc/sudo.conf ] ; then
	sudo root $*
else
	su root -c "$*"
fi
