From: Enrico Scholz Date: Thu, 30 Oct 2003 00:32:44 +0000 (+0000) Subject: use customizable paths for '/usr/sbin' X-Git-Tag: version_0_23_96~24 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48f2cd887b30a437ad13edc8ae1eb37dd43faa72;p=util-vserver.git use customizable paths for '/usr/sbin' do not log commands into /tmp/log anymore git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/branches/SYSCALL_SWITCH@303 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/scripts/rootshell b/util-vserver/scripts/rootshell index 7586d46..0331278 100755 --- a/util-vserver/scripts/rootshell +++ b/util-vserver/scripts/rootshell @@ -16,11 +16,16 @@ # 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} +test -e "$UTIL_VSERVER_VARS" || { + echo "Can not find util-vserver installation; aborting..." + exit 1 +} +. "$UTIL_VSERVER_VARS" -echo $* >/tmp/log OPTIONS=$@ if [ "$OPTIONS" = "" ] ; then OPTIONS=--login fi -exec /usr/sbin/chbind --silent --ip 0.0.0.0 /bin/bash $OPTIONS +exec $SBINDIR/chbind --silent --ip 0.0.0.0 /bin/bash $OPTIONS