12 lines
323 B
Bash
Executable File
12 lines
323 B
Bash
Executable File
#!/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 \
|
|
$DEBIANVERSION "$INSTALLDIR" || { echo "Debootstrap failed!"; exit 1; }
|
|
|