bullseye
This commit is contained in:
124
config/common
124
config/common
@@ -1,119 +1,105 @@
|
||||
# config/common - common options for live-build(7)
|
||||
|
||||
# $LB_APT: set package manager
|
||||
# (Default: apt)
|
||||
# Version of live-build used to build config (config format version)
|
||||
LB_CONFIGURATION_VERSION="20210407"
|
||||
|
||||
# Set package manager
|
||||
LB_APT="apt"
|
||||
|
||||
# $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy
|
||||
# (Default: autodetected or empty)
|
||||
# Set apt/aptitude/debootstrap ftp proxy
|
||||
LB_APT_FTP_PROXY=""
|
||||
|
||||
# $LB_APT_HTTP_PROXY: set apt/aptitude http proxy
|
||||
# (Default: autodetected or empty)
|
||||
# Set apt/aptitude/debootstrap http proxy
|
||||
LB_APT_HTTP_PROXY=""
|
||||
|
||||
# $LB_APT_PIPELINE: set apt/aptitude pipeline depth
|
||||
# (Default: )
|
||||
# Set apt/aptitude pipeline depth
|
||||
LB_APT_PIPELINE=""
|
||||
|
||||
# $LB_APT_RECOMMENDS: set apt/aptitude recommends
|
||||
# (Default: true)
|
||||
# Set apt/aptitude recommends
|
||||
LB_APT_RECOMMENDS="true"
|
||||
|
||||
# $LB_APT_SECURE: set apt/aptitude security
|
||||
# (Default: true)
|
||||
# Set apt/aptitude security
|
||||
LB_APT_SECURE="true"
|
||||
|
||||
# $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list
|
||||
# (Default: true)
|
||||
# Set apt/aptitude source entries in sources.list
|
||||
LB_APT_SOURCE_ARCHIVES="true"
|
||||
|
||||
# $LB_CACHE: control cache
|
||||
# (Default: true)
|
||||
# Control cache
|
||||
LB_CACHE="true"
|
||||
|
||||
# $LB_CACHE_INDICES: control if downloaded package indices should be cached
|
||||
# (Default: false)
|
||||
# Control if downloaded package indices should be cached
|
||||
LB_CACHE_INDICES="false"
|
||||
|
||||
# $LB_CACHE_PACKAGES: control if downloaded packages files should be cached
|
||||
# (Default: true)
|
||||
# Control if downloaded packages files should be cached
|
||||
LB_CACHE_PACKAGES="true"
|
||||
|
||||
# $LB_CACHE_STAGES: control if completed stages should be cached
|
||||
# (Default: bootstrap)
|
||||
# Control if completed stages should be cached
|
||||
LB_CACHE_STAGES="bootstrap"
|
||||
|
||||
# $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use
|
||||
# (Default: noninteractive)
|
||||
# Set debconf(1) frontend to use
|
||||
LB_DEBCONF_FRONTEND="noninteractive"
|
||||
|
||||
# $LB_DEBCONF_PRIORITY: set debconf(1) priority to use
|
||||
# (Default: critical)
|
||||
# Set debconf(1) priority to use
|
||||
LB_DEBCONF_PRIORITY="critical"
|
||||
|
||||
# $LB_INITRAMFS: set initramfs hook
|
||||
# (Default: live-boot)
|
||||
# Set initramfs hook
|
||||
LB_INITRAMFS="live-boot"
|
||||
|
||||
# $LB_INITRAMFS_COMPRESSION: set initramfs compression
|
||||
# (Default: gzip)
|
||||
# Set initramfs compression
|
||||
LB_INITRAMFS_COMPRESSION="gzip"
|
||||
|
||||
# $LB_INITSYSTEM: set init system
|
||||
# (Default: systemd)
|
||||
# Set init system
|
||||
LB_INITSYSTEM="systemd"
|
||||
|
||||
# $LB_FDISK: set fdisk program
|
||||
# (Default: autodetected)
|
||||
LB_FDISK="fdisk"
|
||||
|
||||
# $LB_LOSETUP: set losetup program
|
||||
# (Default: autodetected)
|
||||
LB_LOSETUP="losetup"
|
||||
|
||||
# $LB_MODE: set distribution mode
|
||||
# (Default: debian)
|
||||
# Set distribution mode
|
||||
LB_MODE="debian"
|
||||
|
||||
# $LB_SYSTEM: set system type
|
||||
# (Default: live)
|
||||
# Set system type
|
||||
LB_SYSTEM="live"
|
||||
|
||||
# $LB_TASKSEL: set tasksel program
|
||||
# (Default: apt)
|
||||
LB_TASKSEL="apt"
|
||||
# Set base name of the image
|
||||
LB_IMAGE_NAME="live-image"
|
||||
|
||||
# Set options to use with apt
|
||||
APT_OPTIONS="--yes -o Acquire::Retries=5"
|
||||
|
||||
# Set options to use with aptitude
|
||||
APTITUDE_OPTIONS="--assume-yes -o Acquire::Retries=5"
|
||||
|
||||
# Set options to use with debootstrap
|
||||
DEBOOTSTRAP_OPTIONS=""
|
||||
|
||||
# Set script to use with debootstrap
|
||||
DEBOOTSTRAP_SCRIPT=""
|
||||
|
||||
# Set options to use with gzip
|
||||
GZIP_OPTIONS="-6 --rsyncable"
|
||||
|
||||
# Enable UTC timestamps
|
||||
LB_UTC_TIME="false"
|
||||
|
||||
# live-build options
|
||||
|
||||
# $_BREAKPOINTS: enable breakpoints
|
||||
# (Default: false)
|
||||
# Enable breakpoints
|
||||
# If set here, overrides the command line option
|
||||
#_BREAKPOINTS="false"
|
||||
|
||||
# $_DEBUG: enable debug
|
||||
# (Default: false)
|
||||
# Enable debug
|
||||
# If set here, overrides the command line option
|
||||
#_DEBUG="false"
|
||||
|
||||
# $_COLOR: enable color
|
||||
# (Default: false)
|
||||
#_COLOR="false"
|
||||
# Enable color
|
||||
# If set here, overrides the command line option
|
||||
#_COLOR="auto"
|
||||
|
||||
# $_FORCE: enable force
|
||||
# (Default: false)
|
||||
# Enable force
|
||||
# If set here, overrides the command line option
|
||||
#_FORCE="false"
|
||||
|
||||
# $_QUIET: enable quiet
|
||||
# (Default: false)
|
||||
_QUIET="false"
|
||||
# Enable quiet
|
||||
# If set here, overrides the command line option
|
||||
#_QUIET="false"
|
||||
|
||||
# $_VERBOSE: enable verbose
|
||||
# (Default: false)
|
||||
# Enable verbose
|
||||
# If set here, overrides the command line option
|
||||
#_VERBOSE="false"
|
||||
|
||||
# Internal stuff (FIXME)
|
||||
APT_OPTIONS="--yes"
|
||||
APTITUDE_OPTIONS="--assume-yes"
|
||||
DEBOOTSTRAP_OPTIONS=""
|
||||
DEBOOTSTRAP_SCRIPT=""
|
||||
GZIP_OPTIONS="-6 --rsyncable"
|
||||
ISOHYBRID_OPTIONS=""
|
||||
|
||||
Reference in New Issue
Block a user