cleanups
[util-vserver.git] / util-vserver / scripts / vserver
index 21b8d52..3bcbbc5 100755 (executable)
@@ -37,8 +37,10 @@ $"Usage: $(basename $0) [-s|--sync] [-v|--verbose]
 <vserver> is the name of a vserver.
 
 Possible commands are:
-    start       ... starts the specified vserver
-    stop        ... stops the specified vserver
+    start [--nodeps] <start-vservers-opts>*
+                ... starts the specified vserver
+    stop [--nodeps] <start-vservers-opts>*
+                ... stops the specified vserver
     restart     ... restarts the specified vserver; this is the subsequent
                     execution of a synchronized 'stop' and a 'start'
     condrestart ... restarts the vserver when it is running already
@@ -57,6 +59,12 @@ Possible commands are:
     build <buildopts>*
                 ... builds a new vserver from scratch
 
+    unify [-R]
+               ... (de)unify vserver
+               
+    pkg install <pkg>
+               ... installs package(s) in the vserver
+               
     apt-get,apt-config,apt-cache <apt-opts>*
                ... execute the apt-* command for the given vserver
     rpm <rpm-opts>*
@@ -179,6 +187,16 @@ case "$2" in
        isVserverRunning "$VSERVER_DIR"
        ;;
 
+    unify)
+       shift 2
+       exec $_VUNIFY "$@" "$vserver"
+       ;;
+       
+    pkg)
+       shift 2
+       exec $_VPKG "$vserver" "$@"
+       ;;
+
     apt-get|apt-config|apt-cache)
        export _APT_GET=$2
        shift 2