126 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # config/common - common options for live-build(7)
 | |
| 
 | |
| # $LB_APT: set package manager
 | |
| # (Default: apt)
 | |
| LB_APT="apt"
 | |
| 
 | |
| # $LB_APT_FTP_PROXY: set apt/aptitude ftp proxy
 | |
| # (Default: autodetected or empty)
 | |
| LB_APT_FTP_PROXY=""
 | |
| 
 | |
| # $LB_APT_HTTP_PROXY: set apt/aptitude http proxy
 | |
| # (Default: autodetected or empty)
 | |
| LB_APT_HTTP_PROXY=""
 | |
| 
 | |
| # $LB_APT_PIPELINE: set apt/aptitude pipeline depth
 | |
| # (Default: )
 | |
| LB_APT_PIPELINE=""
 | |
| 
 | |
| # $LB_APT_RECOMMENDS: set apt/aptitude recommends
 | |
| # (Default: true)
 | |
| LB_APT_RECOMMENDS="true"
 | |
| 
 | |
| # $LB_APT_SECURE: set apt/aptitude security
 | |
| # (Default: true)
 | |
| LB_APT_SECURE="true"
 | |
| 
 | |
| # $LB_APT_SOURCE_ARCHIVES: set apt/aptitude source entries in sources.list
 | |
| # (Default: true)
 | |
| LB_APT_SOURCE_ARCHIVES="true"
 | |
| 
 | |
| # $LB_CACHE: control cache
 | |
| # (Default: true)
 | |
| LB_CACHE="true"
 | |
| 
 | |
| # $LB_CACHE_INDICES: control if downloaded package indices should be cached
 | |
| # (Default: false)
 | |
| LB_CACHE_INDICES="false"
 | |
| 
 | |
| # $LB_CACHE_PACKAGES: control if downloaded packages files should be cached
 | |
| # (Default: true)
 | |
| LB_CACHE_PACKAGES="true"
 | |
| 
 | |
| # $LB_CACHE_STAGES: control if completed stages should be cached
 | |
| # (Default: bootstrap)
 | |
| LB_CACHE_STAGES="bootstrap"
 | |
| 
 | |
| # $LB_DEBCONF_FRONTEND: set debconf(1) frontend to use
 | |
| # (Default: noninteractive)
 | |
| LB_DEBCONF_FRONTEND="noninteractive"
 | |
| 
 | |
| # $LB_DEBCONF_PRIORITY: set debconf(1) priority to use
 | |
| # (Default: critical)
 | |
| LB_DEBCONF_PRIORITY="critical"
 | |
| 
 | |
| # $LB_INITRAMFS: set initramfs hook
 | |
| # (Default: live-boot)
 | |
| LB_INITRAMFS="live-boot"
 | |
| 
 | |
| # $LB_INITRAMFS_COMPRESSION: set initramfs compression
 | |
| # (Default: gzip)
 | |
| LB_INITRAMFS_COMPRESSION="gzip"
 | |
| 
 | |
| # $LB_INITSYSTEM: set init system
 | |
| # (Default: systemd)
 | |
| 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)
 | |
| LB_MODE="debian"
 | |
| 
 | |
| # $LB_SYSTEM: set system type
 | |
| # (Default: live)
 | |
| LB_SYSTEM="live"
 | |
| 
 | |
| # $LB_TASKSEL: set tasksel program
 | |
| # (Default: apt)
 | |
| LB_TASKSEL="apt"
 | |
| 
 | |
| # live-build options
 | |
| 
 | |
| # $_BREAKPOINTS: enable breakpoints
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_BREAKPOINTS="false"
 | |
| 
 | |
| # $_DEBUG: enable debug
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_DEBUG="false"
 | |
| 
 | |
| # $_COLOR: enable color
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_COLOR="false"
 | |
| 
 | |
| # $_FORCE: enable force
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_FORCE="false"
 | |
| 
 | |
| # $_QUIET: enable quiet
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_QUIET="false"
 | |
| 
 | |
| # $_VERBOSE: enable verbose
 | |
| # If set here, overrides the command line option
 | |
| # (Default: false)
 | |
| #_VERBOSE="false"
 | |
| 
 | |
| # Internal stuff (FIXME)
 | |
| APT_OPTIONS="--yes"
 | |
| APTITUDE_OPTIONS="--assume-yes"
 | |
| DEBOOTSTRAP_OPTIONS=""
 | |
| DEBOOTSTRAP_SCRIPT=""
 | |
| GZIP_OPTIONS="-6  --rsyncable"
 | |
| ISOHYBRID_OPTIONS=""
 |