use 'test -n "..."' instead of 'test "..."'; when "..." expands to '-v'
[util-vserver.git] / util-vserver / scripts / vserver-build
index 980ca5a..d64c98e 100755 (executable)
@@ -32,14 +32,14 @@ function showHelp()
 {
     echo \
 $"Usage: $(basename $0) -m <method> -n <name> --force <cfg-options>*
-    --rootdir <dir> --pkgcfgbase <dir> [--] <method-args>*
+    --rootdir <dir> --pkgbase <dir> [--] <method-args>*
 
 Options:
     --force     ...  remove/rename already existing vservers with the same name
     -m <method> ...  use method <method>; see below for possible values
     --rootdir <dir>
                 ...  [default: $DEFAULT_VSERVERDIR]
-    --pkgcfgbase <dir>
+    --pkgbase <dir>
                 ...  [default: $DEFAULT_VSERVERPKGDIR]
       
 cfg-options are: $SETUP_HELPMSG
@@ -53,10 +53,13 @@ Possible methods are:
     apt-rpm ... -- -d <distribution>
                 ...  installs the base-packages of the given distribution with
                     help of 'vapt-get'
+    yum     ... -- -d <distribution>
+                ...  installs the base-packages of the given distribution with
+                    help of 'vyum'
     skeleton ... -- [<cmd> <args>*]
                 ...  installs a minimal skeleton filesystem, creates the
                     configuration file and calls an optional command then
-    debootstrap ... -- -d <distribution> [-m <mirror>]
+    debootstrap ... -- -d <distribution> [-m <mirror>] [-- <debootstrap-options>*]
                      bootstraps the vserver with Debian's 'debootstrap' package
 
 Please report bugs to $PACKAGE_BUGREPORT"
@@ -80,7 +83,7 @@ the GNU General Public License.  This program has absolutely no warranty."
 set -e
 
 declare -a default_opts=()
-test "$NO_DEFAULT_OPTS" || getFileArray default_opts "$CONFDIR/.defaults/apps/build/options" || :
+test -n "$NO_DEFAULT_OPTS" || getFileArray default_opts "$CONFDIR/.defaults/apps/build/options" || :
 
 tmp=$(getopt -o +m:n: --long force,debug,help,version,rootdir:,pkgbase:,$SETUP_OPTIONS -n "$(basename $0)" -- \
        "${default_opts[@]}" "$@") || exit 1
@@ -102,28 +105,22 @@ while true; do
        (--)        shift; break;;
        (*)
            { setup_setOption2 "$1" "$2" && shift; } || \
-           { echo $"vserver-build: internal error."; exit 1; } >&2
+             panic $"vserver-build: internal error."
            ;;
     esac
     shift
 done
 
-test "$VSERVER_NAME" || {
-    echo $"Name of vserver not specified"
-    exit 1
-} >&2
+test -n "$VSERVER_NAME" ||
+    panic $"Name of vserver not specified"
 
 setup_setDefaults "$VSERVER_NAME"
 
 case x"$method" in
     (xlegacy)  exec $_VSERVER_LEGACY "$VSERVER_NAME" build "$@" ;;
-    (xapt-rpm|xcopy|xskeleton|xdebootstrap)
+    (xapt-rpm|xcopy|xskeleton|xdebootstrap|xyum)
                . $PKGLIBDIR/vserver-build.$method
                ;;
-    (x)                echo $"No build-method specified" >&2
-               exit 1
-               ;;
-    (*)                echo $"Unknown build-method '$method'" >&2
-               exit 1
-               ;;
+    (x)                panic $"No build-method specified";;
+    (*)                panic $"Unknown build-method '$method'";;
 esac