svprognu/config/common

106 lines
2.1 KiB
Plaintext
Raw Normal View History

2020-07-07 17:23:30 +02:00
# config/common - common options for live-build(7)
2022-11-18 15:34:27 +01:00
# Version of live-build used to build config (config format version)
LB_CONFIGURATION_VERSION="20210407"
# Set package manager
2020-07-07 17:23:30 +02:00
LB_APT="apt"
2022-11-18 15:34:27 +01:00
# Set apt/aptitude/debootstrap ftp proxy
2020-07-07 17:23:30 +02:00
LB_APT_FTP_PROXY=""
2022-11-18 15:34:27 +01:00
# Set apt/aptitude/debootstrap http proxy
2020-07-07 17:23:30 +02:00
LB_APT_HTTP_PROXY=""
2022-11-18 15:34:27 +01:00
# Set apt/aptitude pipeline depth
2020-07-07 17:23:30 +02:00
LB_APT_PIPELINE=""
2022-11-18 15:34:27 +01:00
# Set apt/aptitude recommends
2020-07-07 17:23:30 +02:00
LB_APT_RECOMMENDS="true"
2022-11-18 15:34:27 +01:00
# Set apt/aptitude security
2020-07-07 17:23:30 +02:00
LB_APT_SECURE="true"
2022-11-18 15:34:27 +01:00
# Set apt/aptitude source entries in sources.list
2020-07-07 17:23:30 +02:00
LB_APT_SOURCE_ARCHIVES="true"
2022-11-18 15:34:27 +01:00
# Control cache
2020-07-07 17:23:30 +02:00
LB_CACHE="true"
2022-11-18 15:34:27 +01:00
# Control if downloaded package indices should be cached
2020-07-07 17:23:30 +02:00
LB_CACHE_INDICES="false"
2022-11-18 15:34:27 +01:00
# Control if downloaded packages files should be cached
2020-07-07 17:23:30 +02:00
LB_CACHE_PACKAGES="true"
2022-11-18 15:34:27 +01:00
# Control if completed stages should be cached
2020-07-07 17:23:30 +02:00
LB_CACHE_STAGES="bootstrap"
2022-11-18 15:34:27 +01:00
# Set debconf(1) frontend to use
2020-07-07 17:23:30 +02:00
LB_DEBCONF_FRONTEND="noninteractive"
2022-11-18 15:34:27 +01:00
# Set debconf(1) priority to use
2020-07-07 17:23:30 +02:00
LB_DEBCONF_PRIORITY="critical"
2022-11-18 15:34:27 +01:00
# Set initramfs hook
2020-07-07 17:23:30 +02:00
LB_INITRAMFS="live-boot"
2022-11-18 15:34:27 +01:00
# Set initramfs compression
2020-07-07 17:23:30 +02:00
LB_INITRAMFS_COMPRESSION="gzip"
2022-11-18 15:34:27 +01:00
# Set init system
2020-07-07 17:23:30 +02:00
LB_INITSYSTEM="systemd"
2022-11-18 15:34:27 +01:00
# Set distribution mode
2020-07-07 17:23:30 +02:00
LB_MODE="debian"
2022-11-18 15:34:27 +01:00
# Set system type
2020-07-07 17:23:30 +02:00
LB_SYSTEM="live"
2022-11-18 15:34:27 +01:00
# 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"
2020-07-07 17:23:30 +02:00
# live-build options
2022-11-18 15:34:27 +01:00
# Enable breakpoints
# If set here, overrides the command line option
2020-07-07 17:23:30 +02:00
#_BREAKPOINTS="false"
2022-11-18 15:34:27 +01:00
# Enable debug
# If set here, overrides the command line option
2020-07-07 17:23:30 +02:00
#_DEBUG="false"
2022-11-18 15:34:27 +01:00
# Enable color
# If set here, overrides the command line option
#_COLOR="auto"
2020-07-07 17:23:30 +02:00
2022-11-18 15:34:27 +01:00
# Enable force
# If set here, overrides the command line option
2020-07-07 17:23:30 +02:00
#_FORCE="false"
2022-11-18 15:34:27 +01:00
# Enable quiet
# If set here, overrides the command line option
#_QUIET="false"
2020-07-07 17:23:30 +02:00
2022-11-18 15:34:27 +01:00
# Enable verbose
# If set here, overrides the command line option
2020-07-07 17:23:30 +02:00
#_VERBOSE="false"