3 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; version 2 of the License.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 test ! -d "$workdir" || $_RM -rf "$workdir"
30 function initVariables
34 test -n "${mirror-unset}" || {
36 findFile aux "$__CONFDIR"/.defaults/apps/debootstrap/mirror ''
37 test -z "$aux" || read mirror <"$aux"
41 function initFilesystem
43 base.initFilesystem "$1"
45 mkdir -p "$SETUP_CONFDIR"/apps/pkgmgmt
46 touch "$SETUP_CONFDIR"/apps/pkgmgmt/internal
49 function findDebootstrap
51 test ! -x "$DEBOOTSTRAP" || return 0
54 DEBOOTSTRAP=$(which debootstrap 2>/dev/null) || {
55 dir=$($_MKTEMPDIR -p /var/tmp debootstrap.XXXXXX)
57 dst=$dir/debootstrap.deb
59 findFile DEBOOTSTRAP_URI "$__CONFDIR"/.defaults/apps/debootstrap/uri "$__PKGLIBDEFAULTDIR"/debootstrap.uri
60 read tmp <$DEBOOTSTRAP_URI
62 (/*) ln -s "$tmp" "$dst";;
65 Could not find local version of 'debootstrap'; downloading it from
67 $_WGET -nv -O "$dst" "$tmp" || {
69 ERROR: Could not download the debootstrap package from
73 Usually, this means that Debian released a new version which is unknown
74 to util-vserver and removed the known ones. To fix this, go to
76 http://ftp.debian.org/debian/pool/main/d/debootstrap/
78 (or a nearby mirror) and search the URL for the most recent *.deb
79 package matching your platform. Then, put this URL into
81 $__CONFDIR/.defaults/apps/debootstrap/uri
83 and retry the vserver-build command again.
88 (*) echo $"Unsupported URI scheme '$tmp'" >&2
94 export DEBOOTSTRAP_DIR=`pwd`/usr/lib/debootstrap
95 DEBOOTSTRAP=`pwd`/usr/sbin/debootstrap
98 arch=$(uname -i 2>/dev/null) || \
99 arch=$(arch 2>/dev/null) ||
102 ## Wash the calculated architecture
104 (i?86|athlon) arch=i386;;
107 test -z "$arch" || echo "$arch" >$DEBOOTSTRAP_DIR/arch
111 test -x "$DEBOOTSTRAP" || { echo $"Can not find debootstrap at '$DEBOOTSTRAP'" >&2; exit 1; }
117 $_MV "$1"/dev.X "$1"/dev
121 ### main starts here <---
124 tmp=$(getopt -o '+d:m:s:' --long debug -n "$0" -- "$@") || exit 1
131 (-d) DISTRIBUTION=$2; shift;;
132 (-m) mirror=$2; shift;;
133 (-s) script=$2; shift;;
136 (*) echo "vserver-build.debootstrap: internal error: unrecognized option '$1'" >&2
146 initFilesystem "$OPTION_FORCE"
148 setup_writeOption "$VSERVER_NAME"
149 setup_writeInitialFstab
153 test -z "$BUILD_INITPRE" || "$BUILD_INITPRE" "$SETUP_CONFDIR" "$UTIL_VSERVER_VARS"
154 mv "$VDIR"/dev "$VDIR"/dev.X
155 "$DEBOOTSTRAP" "$@" "$DISTRIBUTION" "$VDIR" "$mirror" "$script" || : ## HACK: ignore all errors...
157 test -z "$BUILD_INITPOST" || "$BUILD_INITPOST" "$SETUP_CONFDIR" "$UTIL_VSERVER_VARS"