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
27 lines
852 B
Bash
Executable File
27 lines
852 B
Bash
Executable File
# ------------------------------------------------------------------------------
|
|
# Global variables and functions
|
|
# ------------------------------------------------------------------------------
|
|
|
|
. ./functions.sh
|
|
|
|
# The codename of the debian version to install.
|
|
# jessie = testing, wheezy = stable
|
|
DEBIANVERSION=$DIST
|
|
|
|
# Location to grab debian packages
|
|
#DEBIAN_MIRROR=http://http.debian.net/debian
|
|
#DEBIAN_MIRROR=http://mirror.csclub.uwaterloo.ca/debian/
|
|
DEBIAN_MIRROR=http://ftp.ca.debian.org/debian/
|
|
|
|
# XXX: Is this even used?
|
|
EXTRAPKGS="openssh-clients,screen,vim-nox,less"
|
|
|
|
# XXX: Is this even used?
|
|
QUBESDEBIANGIT="http://dsg.is/qubes/"
|
|
|
|
# XXX: Is this even used?
|
|
# make runs the scripts with sudo -E, so HOME is set to /home/user during
|
|
# build, which does not exist. We need to write to $HOME/.gnupg so set it
|
|
# to something valid.
|
|
HOME=/root
|