X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=scripts%2Fvserver-build.debootstrap;h=78e5f11ed77837aaa83a06137a0604f04164ec7a;hb=1bd485daf1544e9b7b9bf020783f6aa0b0085c0b;hp=56575d1a76825b3fee7c07676899307a194bc485;hpb=9c78378bebc1a9f3d400f422df8ede9efea57dea;p=util-vserver.git diff --git a/scripts/vserver-build.debootstrap b/scripts/vserver-build.debootstrap index 56575d1..78e5f11 100644 --- a/scripts/vserver-build.debootstrap +++ b/scripts/vserver-build.debootstrap @@ -15,27 +15,29 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -function cleanUp -{ - test ! -d "$workdir" || $_RM -rf "$workdir" -} - function init { workdir= - mirror= - trap "cleanUp" EXIT + MIRROR= + options= } function initVariables { base.init - test -n "${mirror-unset}" || { + test -n "${MIRROR}" || { local aux - findFile aux "$__CONFDIR"/.defaults/apps/debootstrap/mirror '' - test -z "$aux" || read mirror <"$aux" + findFile aux "$__CONFDIR"/.distributions/"$DISTRIBUTION"/debootstrap.mirror \ + "$__CONFDIR"/.defaults/apps/debootstrap/mirror \ + "$__DISTRIBDIR"/"$DISTRIBUTION"/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 '' + test -z "$file" || read options <"$file" } function initFilesystem @@ -55,6 +57,8 @@ function findDebootstrap dir=$($_MKTEMPDIR -p /var/tmp debootstrap.XXXXXX) workdir=$dir dst=$dir/debootstrap.deb + + base._addGeneratedFile "$workdir" findFile DEBOOTSTRAP_URI "$__CONFDIR"/.defaults/apps/debootstrap/uri "$__PKGLIBDEFAULTDIR"/debootstrap.uri read tmp <$DEBOOTSTRAP_URI @@ -91,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) || \ @@ -121,7 +127,7 @@ function fixupDebian ### main starts here <--- -tmp=$(getopt -o '+d:m:' --long debug -n "$0" -- "$@") || exit 1 +tmp=$(getopt -o '+d:m:s:' --long debug -n "$0" -- "$@") || exit 1 eval set -- "$tmp" init @@ -129,7 +135,8 @@ init while true; do case "$1" in (-d) DISTRIBUTION=$2; shift;; - (-m) mirror=$2; shift;; + (-m) MIRROR=$2; shift;; + (-s) script=$2; shift;; (--debug) set -x;; (--) shift; break ;; (*) echo "vserver-build.debootstrap: internal error: unrecognized option '$1'" >&2 @@ -149,10 +156,18 @@ setup_writeInitialFstab findDebootstrap -test -z "$BUILD_INITPRE" || "$BUILD_INITPRE" "$SETUP_CONFDIR" "$UTIL_VSERVER_VARS" +if test -z "$script"; then + findFile script "$__CONFDIR/.distributions/$DISTRIBUTION/debootstrap.script" \ + "$__DISTRIBDIR/$DISTRIBUTION/debootstrap.script" '' +fi + +export MIRROR +test -z "$BUILD_INITPRE" || "$BUILD_INITPRE" "$SETUP_CONFDIR" "$UTIL_VSERVER_VARS" mv "$VDIR"/dev "$VDIR"/dev.X -"$DEBOOTSTRAP" "$@" "$DISTRIBUTION" "$VDIR" "$mirror" || : ## HACK: ignore all errors... +$_VNAMESPACE --new -- \ + "$DEBOOTSTRAP" $options "$@" "$DISTRIBUTION" "$VDIR" "$MIRROR" "$script" || : ## HACK: ignore all errors... fixupDebian "$VDIR" test -z "$BUILD_INITPOST" || "$BUILD_INITPOST" "$SETUP_CONFDIR" "$UTIL_VSERVER_VARS" +$_RM -fr "$workdir" base.setSuccess