2014-04-24 13:42:18 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
|
|
|
|
. $SCRIPTSDIR/vars.sh
|
|
|
|
|
|
|
|
echo "-> Installing base debian system"
|
|
|
|
|
|
|
|
COMPONENTS="" debootstrap --arch=amd64 --include=ncurses-term \
|
|
|
|
--components=main --keyring=${SCRIPTSDIR}/debian-archive-keyring.gpg \
|
2014-07-26 14:25:54 +00:00
|
|
|
$DEBIANVERSION "$INSTALLDIR" http://http.debian.net/debian || { echo "Debootstrap failed!"; exit 1; }
|
2014-04-24 13:42:18 +00:00
|
|
|
|