Update bug report instructions
[grml-debootstrap.git] / config
1 # Filename:      /etc/debootstrap/config
2 # Purpose:       configuration file for grml-debootstrap
3 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
4 # Bug-Reports:   see https://grml.org/bugs/
5 # License:       This file is licensed under the GPL v2 or any later version.
6 ################################################################################
7
8 ################################################################################
9 # Important: adjust this file if you want to execute grml-debootstrap
10 #            without using the (limited) interactive frontend or
11 #            command line options (see manpage and grml-debootstrap --help)
12 ################################################################################
13
14 # Where should Debian be installed to?
15 # Usually you want to use a partition.
16 # If you specify a string *without* /dev/ in the beginning, grml-debootstrap
17 # assumes you want to install Debian into a directory. MKFS, TUNE2FS, GRUB and
18 # FSCK will be ignored.
19 # Make sure the TARGET-directory points to a filesystem which has the dev, exec
20 # options enabled.
21 # Default: no default.
22 # Usage examples:
23 # TARGET='/dev/sda1' # install to partition /dev/sda1
24 # TARGET='/mnt/grml' # install into directory /mnt/grml
25
26 # Install the grub bootloader?
27 # Default: 'yes'
28 # Usage example:
29 # GRUB_INSTALL='no' # Do not install the grub bootloader.
30
31 # Specify the device where grub will be installed.
32 # Note: grub can not be installed into a partition.
33 # Default: no default. (Grub will not be installed.)
34 # Usage example:
35 # GRUB='/dev/sda' # Install into MBR of sda
36
37 # Additional kernel boot options. (For grub.)
38 # Default: no default.
39 # Usage example:
40 # BOOT_APPEND='pci=nomsi'
41
42 # Set mirror where packages will be downloaded from.
43 # Default: use /etc/debootstrap/etc/apt/sources.list if it exists, else
44 # 'http://deb.debian.org/debian'
45 # Usage example:
46 # MIRROR='ftp://ftp.de.debian.org/debian'
47
48 # Debian Install CD path:
49 # If you have a Debian CD (or mounted ISO), core packages will be
50 # installed from the CD instead of from the network.
51 # Default: no default.
52 # ISO='file:/mnt/iso/debian/'
53
54 # If /etc/apt/sources.list should NOT be build on the fly, this
55 # options allows providing a separate apt sources.list file via
56 # /etc/debootstrap/etc/apt/sources.list
57 # KEEP_SRC_LIST='yes'
58
59 # To enable the Grml repository via /etc/apt/sources.list.d/grml.list
60 # set this variable to 'yes'.
61 # Default: 'no'
62 # GRMLREPOS='yes'
63
64 # Install packages from grml-repository?
65 # Requires activated $GRMLREPOS from above. If empty nothing will be added.
66 # Default: no default.
67 # GRMLPACKAGES='grml-etc-core'
68
69 # To enable Debian's backports repository via
70 # /etc/apt/sources.list.d/backports.list set this variable to 'yes'.
71 # Default: 'no'
72 # BACKPORTREPOS='yes'
73
74 # Debian release that should be installed.
75 # Supported values: lenny, squeeze, wheezy, jessie, stretch, buster, bullseye, sid
76 # Default: 'buster'
77 # RELEASE='buster'
78
79 # Define components that should be used within sources.list.
80 # Default: 'main'
81 # COMPONENTS='main contrib non-free'
82
83 # Set target architecture.
84 # Only useful when installing i386 while running an amd64 kernel.
85 # Default: current architecture. (From 'dpkg —print-architecture'.)
86 # ARCH='amd64'
87
88 # Hostname of new system.
89 # Default: $HOSTNAME or if unset 'grml'
90 # HOSTNAME='grml'
91
92 # Kernel version to install.
93 # Default: according to current architecture.
94 # KERNEL='2.6-686'
95
96 # Set initial password for the root user.
97 # Please change this password after installation for security reasons.
98 # Default: no default.
99 # ROOTPASSWORD=''
100
101 # Name of debootstrap executable.
102 # Supported values: 'debootstrap', 'cdebootstrap', 'mmdebstrap'
103 # Default: 'debootstrap'
104 # DEBOOTSTRAP='debootstrap'
105
106 # Pass extra options to debootstrap.
107 # Default: no default.
108 # Usage example:
109 # DEBOOTSTRAP_OPT='--include=debconf-utils,locales,pciutils --exclude=nano,tasksel,tasksel-data,iptables'
110
111 # debconf-frontend that should be used.
112 # Default: 'noninteractive'
113 # DEBIAN_FRONTEND='noninteractive'
114
115 # Pass extra options to aptitude/apt-get.
116 # Default: no default.
117 # DPKG_OPTIONS='-o APT::Get::AllowUnauthenticated=true -o aptitude::Cmdline::ignore-trust-violations=yes'
118
119 # Use custom grml-debootstrap stages.
120 # Specify path to your custom grml-debootstrap stages.
121 # Default: '/var/cache/grml-debootstrap'
122 # STAGES='/var/cache/grml-debootstrap'
123
124 # Install packages defined in /etc/debootstrap/packages.
125 # Default: 'yes'
126 # PACKAGES='no'
127
128 # Pre-seed DebConf questions from /etc/debootstrap/debconf-selections.
129 # Default: 'yes' (if file exists)
130 # DEBCONF='no'
131
132 # Run scripts from /etc/debootstrap/pre-scripts/ before creating the chroot.
133 # Default: 'yes'
134 # PRE_SCRIPTS='no'
135
136 # Run scripts from /etc/debootstrap/chroot-scripts/ inside chroot.
137 # Default: 'yes'
138 # CHROOT_SCRIPTS='no'
139
140 # Run scripts from /etc/debootstrap/post-scripts/ after setting up chroot.
141 # Default: 'yes'
142 # POST_SCRIPTS='no'
143
144 # Install *.deb packages from /etc/debootstrap/extrapackages/
145 # Default: 'yes'
146 # EXTRAPACKAGES='no'
147
148 # Location of config files for debootstrap.
149 # Default: '/etc/debootstrap'
150 # CONFFILES='/etc/debootstrap'
151
152 # Mount point to use during installation.
153 # Default: no default.
154 # MNTPOINT='/mnt/debootstrap'
155
156 # File system creation tool to apply on $TARGET.
157 # If empty, no file system will be created.
158 # Default: 'mkfs.ext4'
159 # MKFS=''
160
161 # Command line options for file system creation tool.
162 # Default: no default.
163 # MKFS_OPTS=''
164
165 # Filesystem tuning tool to apply on $TARGET.
166 # If empty, the created file system will not be tuned.
167 # Default: 'tune2fs -c0 -i0' if ext* filesystem is used, no default otherwise.
168 # TUNE2FS='tune2fs -c0 -i0'
169
170 # Check file system after installation is finished.
171 # Default: 'no'
172 # FSCK='yes'
173
174 # File system checking tool to apply on $TARGET.
175 # Default: guessed.
176 # FSCKTOOL=''
177
178 # Packages that should be 'dpkg-reconfigure'-ed while installation.
179 # Default: 'console-data'.
180 # RECONFIGURE='console-data'
181
182 # Generate locales using /etc/debootstrap/locale.gen configuration file.
183 # Default: 'yes'
184 # LOCALES='no'
185
186 # locales (LANG) that should be used as default.
187 # Default: 'en_US.UTF-8'
188 # DEFAULT_LOCALES='en_US.UTF-8'
189
190 # locales (LANGUAGE) that should be used as default.
191 # Default: 'en_US:en'
192 # DEFAULT_LANGUAGE='en_US:en'
193
194 # Use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime + set /etc/timezone.
195 # Default: 'Europe/Vienna'
196 # TIMEZONE='Europe/Vienna'
197
198 # Clean APT cache after installation is finished.
199 # Default: 'yes'
200 # RM_APTCACHE='no'
201
202 # Upgrade system via apt-get/aptitude update + [safe-]upgrade.
203 # Default: 'yes'
204 # UPGRADE_SYSTEM='no'
205
206 # Explicit generation of initrd via update-initramfs.
207 # Default: 'yes'
208 # INITRD='no'
209
210 # If the specified file exists its content will be displayed at the end of the
211 # installation process.
212 # Useful for checking for errors and display warning message.
213 # Default: '/etc/debootstrap/install_notes' (empty file).
214 # INSTALL_NOTES='/etc/debootstrap/install_notes'
215
216 # Use fixed disk identifiers for Virtual Machine builds.
217 # Useful for reproducible builds.
218 # Default: 'no'
219 # FIXED_DISK_IDENTIFIERS='yes'
220
221 # Disk identifier when using FIXED_DISK_IDENTIFIERS='yes'.
222 # Use uuid-runtime's uuidgen tool to generate random UUIDs on demand.
223 # Default: '26ada0c0-1165-4098-884d-aafd2220c2c6'
224 # DISK_IDENTIFIER="$(uuidgen)"
225
226 # Delete grml-debootstrap configuration files from installed system.
227 # Useful for reproducible builds or if you don't want to leak information.
228 # Default: 'no'
229 # REMOVE_CONFIGS='yes'
230
231 ## END OF FILE #################################################################