X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=util-vserver%2Fscripts%2Fvserver;h=048d715ee91dbc8148509c20117d41c87b37ba69;hb=279cb52f0c4223be8e0b2a8411b8ff66368eb971;hp=27bc37de96fb095cf4f43eabc9b0d08dcbbb0c5a;hpb=a5732450243817fbb9396a15675f7bddfb0dcb87;p=util-vserver.git diff --git a/util-vserver/scripts/vserver b/util-vserver/scripts/vserver index 27bc37d..048d715 100755 --- a/util-vserver/scripts/vserver +++ b/util-vserver/scripts/vserver @@ -20,7 +20,7 @@ : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars} test -e "$UTIL_VSERVER_VARS" || { - echo "Can not find util-vserver installation; aborting..." + echo "Can not find util-vserver installation; aborting..." >&2 exit 1 } . "$UTIL_VSERVER_VARS" @@ -108,12 +108,18 @@ function restart() exec "${SELF[@]}" "$vserver" start } +function msg() +{ + test -z "$OPTION_SILENT" || return 0 + echo "$@" +} + ### main starts here set +e OPTIONS_ORIG=( "$@" ) -tmp=$(getopt -o +sv --long nonamespace,--nonamespace,help,debug,version,sync,verbose,silent -n "$0" -- "$@") || exit 1 +tmp=$(getopt -o +sv --long nonamespace,--nonamespace,--insecure,help,debug,version,sync,verbose,silent -n "$0" -- "$@") || exit 1 eval set -- "$tmp" OPTION_FORCE_SYNC= @@ -121,18 +127,20 @@ OPTION_VERBOSE= OPTION_SILENT= OPTION_DEBUG= OPTION_NONAMESPACE= +OPTION_INSECURE= while true; do case "$1" in - --help) showHelp $0 ;; - --version) showVersion ;; - --debug) OPTION_DEBUG=$1; set -x;; - -v|--verbose) OPTION_VERBOSE=$1;; - -s|--sync) OPTION_FORCE_SYNC=$1;; - --silent) OPTION_SILENT=$1;; - ----nonamespace)OPTION_NONAMESPACE=$1;; - --) shift; break;; - *) echo $"vserver: internal error; arg=='$1'"; exit 1;; + (--help) showHelp $0 ;; + (--version) showVersion ;; + (--debug) OPTION_DEBUG=$1; set -x;; + (-v|--verbose) OPTION_VERBOSE=$1;; + (-s|--sync) OPTION_FORCE_SYNC=$1;; + (--silent) OPTION_SILENT=$1;; + (----nonamespace)OPTION_NONAMESPACE=$1;; + (----insecure) OPTION_INSECURE=1;; + (--) shift; break;; + (*) echo $"vserver: internal error; arg=='$1'" >&2; exit 1;; esac shift done @@ -149,11 +157,11 @@ test "$cmd" != build || { shift 2; exec "$_VSERVER_BUILD" -n "$vserver" "$@"; } allow_legacy= case "$vserver" in - ./*) VSERVER_DIR=`pwd`/$vserver;; - /*) VSERVER_DIR=$vserver;; - *) VSERVER_DIR=$CONFDIR/$vserver - allow_legacy=1 - ;; + (./*) VSERVER_DIR=`pwd`/$vserver;; + (/*) VSERVER_DIR=$vserver;; + (*) VSERVER_DIR=$CONFDIR/$vserver + allow_legacy=1 + ;; esac if test "$allow_legacy"; then @@ -162,15 +170,17 @@ if test "$allow_legacy"; then test -d "$VSERVER_DIR" -o ! -e "$CONFDIR/$vserver.conf" || do_legacy=1 test -z "$do_legacy" || { - echo $"WARNING: can not find configuration, assuming legacy method" + echo $"WARNING: can not find configuration, assuming legacy method" >&2 exec "$_VSERVER_LEGACY" "$@" } fi test -d "$VSERVER_DIR" || { - echo "Can not find vserver-setup" + echo $"\ +Can not find vserver-setup; please make sure that the vserver configuration +is located at $VSERVER_DIR/." exit 1 -} +} >&2 if test -e "$VSERVER_DIR"/name; then read VSERVER_NAME <"$VSERVER_DIR"/name @@ -183,69 +193,68 @@ test "$2" != start -o "$OPTION_NONAMESPACE" || isAvoidNamespace "$VSERVER_DIR" | . $PKGLIBDIR/vserver.functions case "$2" in - start|stop) + (start|stop) shift 2 . $PKGLIBDIR/vserver.$cmd ;; - suexec|restart) + (suexec|restart) shift 2 $cmd "$@" ;; - condrestart) + (condrestart) test ! isVserverRunning "$VSERVER_DIR" || restart ;; - exec) + (exec) shift 2 suexec root "$@" ;; - chkconfig) + (chkconfig) shift 2 suexec root chkconfig "$@" ;; - enter) + (enter) getEnterShell "$VSERVER_DIR" suexec root "${ENTER_SHELL[@]}" ;; - running) + (running) isVserverRunning "$VSERVER_DIR" ;; - unify) + (unify) shift 2 exec $_VUNIFY "$@" "$vserver" ;; - pkg) + (pkg) shift 2 exec $_VPKG "$vserver" "$@" ;; - apt-get|apt-config|apt-cache) + (apt-get|apt-config|apt-cache) export _APT_GET=$2 shift 2 exec $_VAPT_GET -- "$@" ;; - rpm) + (rpm) exec $_VRPM -- "$@" ;; - status) + (status) if getVserverStatus "$VSERVER_DIR" ctx procnum; then - echo $"Vserver '$vserver' is running at context '$ctx'" + msg $"Vserver '$vserver' is running at context '$ctx'" if test "$2" = status; then - echo $"Number of processes:" $procnum - echo -n $"Uptime: " - "$_FILETIME" "$VSERVER_DIR/run" + msg $"Number of processes: " $procnum + msg $"Uptime: " $("$_FILETIME" "$VSERVER_DIR/run") fi exit 0 else - echo $"Vserver '$vserver' is not running" + msg $"Vserver '$vserver' is not running" exit 1 fi ;; - *) - echo $"Usage: $0 {start|stop|suexec|restart|condrestart|exec|enter|chkconfig|running|status}" + (*) + echo $"Usage: $0 {start|stop|suexec|restart|condrestart|exec|enter|chkconfig|running|status}" >&2 exit 2 ;; esac