1334b8ae50
Added a few more whonix replacement tweaks Updated umount_kill.sh to be able to umount directories that have been deleted Added a DEBUG feature to save / use already created debootstrap image to save time debugging
39 lines
1.6 KiB
Bash
Executable File
39 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
# vim: set ts=4 sw=4 sts=4 et :
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Source external scripts
|
|
# ------------------------------------------------------------------------------
|
|
. $SCRIPTSDIR/vars.sh
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Configurations
|
|
# ------------------------------------------------------------------------------
|
|
if [ "$VERBOSE" -ge 2 -o "$DEBUG" == "1" ]; then
|
|
set -x
|
|
else
|
|
set -e
|
|
fi
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Execute any custom pre configuration scripts
|
|
# ------------------------------------------------------------------------------
|
|
customStep "$0" "pre"
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Install base debian system
|
|
# ------------------------------------------------------------------------------
|
|
if ! [ -f "$INSTALLDIR/tmp/.prepared_debootstrap" ]; then
|
|
debug "Installing base ${DEBIANVERSION} system"
|
|
COMPONENTS="" debootstrap --arch=amd64 --include=ncurses-term \
|
|
--components=main --keyring="${SCRIPTSDIR}/keys/debian-${DEBIANVERSION}-archive-keyring.gpg" \
|
|
"$DEBIANVERSION" "$INSTALLDIR" "$DEBIAN_MIRROR" || { error "Debootstrap failed!"; exit 1; }
|
|
chroot "$INSTALLDIR" chmod 0666 "/dev/null"
|
|
touch "$INSTALLDIR/tmp/.prepared_debootstrap"
|
|
fi
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Execute any custom post configuration scripts
|
|
# ------------------------------------------------------------------------------
|
|
customStep "$0" "post"
|