qubes-linux-template-builder/scripts_debian/01_install_core.sh

12 lines
323 B
Bash
Raw Normal View History

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 \
$DEBIANVERSION "$INSTALLDIR" || { echo "Debootstrap failed!"; exit 1; }