added 'unify' and 'pkg' commands
[util-vserver.git] / util-vserver / scripts / vserver
index 5725eaa..3bcbbc5 100755 (executable)
@@ -59,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>*
@@ -181,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