Make it easier to install more packages right away.
[util-vserver.git] / scripts / vserver-build.debootstrap
index 1036a6c..ba2dd56 100644 (file)
@@ -31,12 +31,12 @@ function initVariables
        findFile aux "$__CONFDIR"/.distributions/"$DISTRIBUTION"/debootstrap.mirror \
                     "$__CONFDIR"/.defaults/apps/debootstrap/mirror \
                     "$__DISTRIBDIR"/"$DISTRIBUTION"/debootstrap.mirror \
-                    "$__PKGLIBDEFAULTDIR"/debootstrap.mirror
+                    "$__PKGLIBDEFAULTDIR"/debootstrap.mirror ''
        test -z "$aux" || read MIRROR <"$aux"
     }
     local file
     findFile file "$__CONFDIR"/.distributions/"$DISTRIBUTION"/debootstrap.options \
-                 "$__CONFDIR"/.defaults/apps/debootstrap/options
+                 "$__CONFDIR"/.defaults/apps/debootstrap/options ''
     test -z "$file" || read options <"$file"
 }
 
@@ -95,8 +95,10 @@ EOF
         cd $dir
         ar x "$dst"
         tar xzf data.tar.gz
-        export DEBOOTSTRAP_DIR=`pwd`/usr/lib/debootstrap
+        DEBOOTSTRAP_DIR=`pwd`/usr/lib/debootstrap
         DEBOOTSTRAP=`pwd`/usr/sbin/debootstrap
+        test -d "$DEBOOTSTRAP_DIR" || DEBOOTSTRAP_DIR=`pwd`/usr/share/debootstrap
+        export DEBOOTSTRAP_DIR
 
        local arch
        arch=$(uname -i 2>/dev/null) || \
@@ -155,14 +157,8 @@ setup_writeInitialFstab
 findDebootstrap
 
 if test -z "$script"; then
-    for s in "$__CONFDIR/.distributions/$DISTRIBUTION/debootstrap.script"
-            "$__DISTRIBDIR/$DISTRIBUTION/debootstrap.script"
-    do
-       if test -e "$s"; then
-           script="$s"
-           break
-       fi
-    done
+    findFile script "$__CONFDIR/.distributions/$DISTRIBUTION/debootstrap.script" \
+                   "$__DISTRIBDIR/$DISTRIBUTION/debootstrap.script" ''
 fi
 
 export MIRROR