/usr/lib/util-vserver/vserver-build.debootstrap is in util-vserver 0.30.216-pre3120-1.4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | # $Id$ --*- sh -*--
# Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
function init
{
workdir=
MIRROR=
options=
}
function initVariables
{
base.init
test -n "${MIRROR}" || {
local 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
{
base.initFilesystem "$1"
mkdir -p "$SETUP_CONFDIR"/apps/pkgmgmt
touch "$SETUP_CONFDIR"/apps/pkgmgmt/internal
}
function findDebootstrap
{
test ! -x "$DEBOOTSTRAP" || return 0
pushd . &>/dev/null
DEBOOTSTRAP=$(which debootstrap 2>/dev/null) || {
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
case "$tmp" in
(/*) ln -s "$tmp" "$dst";;
(http://*|ftp://*)
echo $"\
Could not find local version of 'debootstrap'; downloading it from
${tmp}..."
$_WGET -nv -O "$dst" "$tmp" || {
$_CAT <<EOF >&2
ERROR: Could not download the debootstrap package from
$tmp
Usually, this means that Debian released a new version which is unknown
to util-vserver and removed the known ones. To fix this, go to
http://ftp.debian.org/debian/pool/main/d/debootstrap/
(or a nearby mirror) and search the URL for the most recent *.deb
package matching your platform. Then, put this URL into
$__CONFDIR/.defaults/apps/debootstrap/uri
and retry the vserver-build command again.
EOF
exit 1
}
;;
(*) echo $"Unsupported URI scheme '$tmp'" >&2
exit 1;;
esac
cd $dir
ar x "$dst"
local data=`ls -1 data.tar.*`
test "${data%.gz}" = "$data" || tar xzf data.tar.gz
test "${data%.bz2}" = "$data" || tar xjf data.tar.bz2
test "${data%.xz}" = "$data" || tar xJf data.tar.xz
DEBOOTSTRAP_DIR=`pwd`/usr/lib/debootstrap
DEBOOTSTRAP=`pwd`/usr/sbin/debootstrap
test -x "$DEBOOTSTRAP" || {
echo $"Unable to extract debootstrap: data file is $data" >&2
exit 1
}
test -d "$DEBOOTSTRAP_DIR" || DEBOOTSTRAP_DIR=`pwd`/usr/share/debootstrap
export DEBOOTSTRAP_DIR
local arch
arch=$(uname -i 2>/dev/null) || \
arch=$(arch 2>/dev/null) ||
arch=
## Wash the calculated architecture
case $arch in
(i?86|athlon) arch=i386;;
(x86_64) arch=amd64;;
esac
test -z "$arch" || echo "$arch" >$DEBOOTSTRAP_DIR/arch
}
popd &>/dev/null
test -x "$DEBOOTSTRAP" || { echo $"Can not find debootstrap at '$DEBOOTSTRAP'" >&2; exit 1; }
}
function fixupDebian
{
$_RM -rf "$1"/dev
$_MV "$1"/dev.X "$1"/dev
}
### main starts here <---
tmp=$(getopt -o '+d:m:s:' --long debug -n "$0" -- "$@") || exit 1
eval set -- "$tmp"
init
while true; do
case "$1" in
(-d) DISTRIBUTION=$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
exit 1
;;
esac
shift
done
getDistribution '' 1
initVariables
initFilesystem "$OPTION_FORCE"
setup_writeOption "$VSERVER_NAME"
setup_writeInitialFstab
findDebootstrap
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
$_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
|