From: Daniel Hokka Zakrisson Date: Sun, 13 Jan 2008 18:26:41 +0000 (+0000) Subject: Use $cmd instead of $2. X-Git-Tag: release-0.30.215~46 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1fc457a777a0c3206aed69d4ef178d495848b4e;p=util-vserver.git Use $cmd instead of $2. git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@2661 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/scripts/vserver b/scripts/vserver index 044835b..a34993f 100755 --- a/scripts/vserver +++ b/scripts/vserver @@ -199,11 +199,11 @@ Possible solutions: _setVserverName # Create a new namespace when starting the guest -test "$2" != start -o -n "$OPTION_NONAMESPACE" || isAvoidNamespace "$VSERVER_DIR" || \ +test "$cmd" != start -o -n "$OPTION_NONAMESPACE" || isAvoidNamespace "$VSERVER_DIR" || \ exec $_VNAMESPACE --new -- $_VSERVER ----nonamespace "${OPTIONS_ORIG[@]}" # Enter the namespace early so we can test for files inside the guest -test "$2" != enter -a "$2" != stop || \ +test "$cmd" != enter -a "$cmd" != stop || \ test -n "$OPTION_NONAMESPACE" || isAvoidNamespace "$VSERVER_DIR" || \ ! isVserverRunning "$VSERVER_DIR" || \ exec $_VNAMESPACE --enter "$VSERVER_DIR" -- $_VSERVER ----nonamespace "${OPTIONS_ORIG[@]}"