2008-06-09 02:10:03 +02:00
|
|
|
# config/bootstrap - options for live-helper(7), bootstrap stage
|
|
|
|
|
|
|
|
# $LH_ARCHITECTURE: select chroot architecture
|
|
|
|
# (Default: autodetected)
|
2008-06-10 04:36:38 +02:00
|
|
|
# Note: Debian Live is also designed to work on AMD64 and PowerPC
|
2008-06-09 02:10:03 +02:00
|
|
|
LH_ARCHITECTURE="i386"
|
|
|
|
|
|
|
|
# $LH_BOOTSTRAP_CONFIG: set distribution config directory
|
|
|
|
# (Default: empty)
|
|
|
|
LH_BOOTSTRAP_CONFIG=""
|
|
|
|
|
|
|
|
# $LH_BOOTSTRAP_INCLUDE: include packages on base
|
|
|
|
# (Default: empty)
|
|
|
|
LH_BOOTSTRAP_INCLUDE=""
|
|
|
|
|
|
|
|
# $LH_BOOTSTRAP_EXCLUDE: exclude packages on base
|
|
|
|
# (Default: empty)
|
|
|
|
LH_BOOTSTRAP_EXCLUDE=""
|
|
|
|
|
|
|
|
# $LH_BOOTSTRAP_FLAVOUR: select flavour to use
|
2008-06-10 04:36:38 +02:00
|
|
|
# (Default: standard)
|
|
|
|
# FIXME: Set to "minimal" for CryptoNAS releases
|
|
|
|
LH_BOOTSTRAP_FLAVOUR="standard"
|
2008-06-09 02:10:03 +02:00
|
|
|
|
|
|
|
# $LH_BOOTSTRAP_KEYRING: set distribution keyring
|
|
|
|
# (Default: empty)
|
|
|
|
LH_BOOTSTRAP_KEYRING=""
|
|
|
|
|
|
|
|
# $LH_DISTRIBUTION: select distribution to use
|
|
|
|
# (Default: lenny)
|
2008-06-10 04:36:38 +02:00
|
|
|
LH_DISTRIBUTION="etch"
|
2008-06-09 02:10:03 +02:00
|
|
|
|
|
|
|
# $LH_MIRROR_BOOTSTRAP: set mirror to bootstrap from
|
|
|
|
# (Default: http://ftp.us.debian.org/debian/)
|
2008-07-04 07:33:24 +02:00
|
|
|
LH_MIRROR_BOOTSTRAP="http://ftp.us.debian.org/debian/"
|
2008-06-09 02:10:03 +02:00
|
|
|
|
|
|
|
# $LH_MIRROR_CHROOT: set mirror to fetch packages from
|
|
|
|
# (Default: http://ftp.us.debian.org/debian/)
|
2008-06-10 04:36:38 +02:00
|
|
|
LH_MIRROR_CHROOT=$LH_MIRROR_BOOTSTRAP
|
2008-06-09 02:10:03 +02:00
|
|
|
|
|
|
|
# $LH_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
|
|
|
|
# (Default: http://security.debian.org/)
|
2008-07-04 07:33:24 +02:00
|
|
|
LH_MIRROR_CHROOT_SECURITY="http://security.debian.org/"
|
2008-06-09 02:10:03 +02:00
|
|
|
|
|
|
|
# $LH_MIRROR_BINARY: set mirror which ends up in the image
|
|
|
|
# (Default: http://ftp.us.debian.org/debian/)
|
|
|
|
LH_MIRROR_BINARY="http://ftp.us.debian.org/debian/"
|
|
|
|
|
|
|
|
# $LH_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
|
|
|
|
# (Default: http://security.debian.org/)
|
|
|
|
LH_MIRROR_BINARY_SECURITY="http://security.debian.org/"
|
|
|
|
|
|
|
|
# $LH_SECTIONS: select section(s) to use
|
|
|
|
# (Default: main)
|
|
|
|
LH_SECTIONS="main"
|
2008-07-04 07:33:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
#Load CryptoNAS and user-customized settings
|
|
|
|
. config/cnas-active-settings
|
|
|
|
|