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