Release new version 0.60
[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, sid
72 # Default: 'wheezy'
73 # RELEASE='wheezy'
74
75 # Define components that should be used within sources.list.
76 # Default: 'main contrib non-free'
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: '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.ext3'
155 # MKFS=''
156
157 # Filesystem tuning tool to apply on $TARGET.
158 # If empty, the created file system will not be tuned.
159 # Default: 'tune2fs -c0 -i0' if ext* filesystem is used, no default otherwise.
160 # TUNE2FS='tune2fs -c0 -i0'
161
162 # Check file system after installation is finished.
163 # Default: 'no'
164 # FSCK='yes'
165
166 # File system checking tool to apply on $TARGET.
167 # Default: guessed.
168 # FSCKTOOL=''
169
170 # Packages that should be 'dpkg-reconfigure'-ed while installation.
171 # Default: 'console-data'.
172 # RECONFIGURE='console-data'
173
174 # Generate locales using /etc/debootstrap/locale.gen configuration file.
175 # Default: 'yes'
176 # LOCALES='no'
177
178 # locales that should be used as default.
179 # Default: 'en_US.UTF-8'
180 # DEFAULT_LOCALES='en_US.UTF-8'
181
182 # Use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime.
183 # Default: 'Europe/Vienna'
184 # TIMEZONE='Europe/Vienna'
185
186 # Clean APT cache after installation is finished.
187 # Default: 'yes'
188 # RM_APTCACHE='no'
189
190 # Upgrade system via apt-get/aptitude update + [safe-]upgrade.
191 # Default: 'yes'
192 # UPGRADE_SYSTEM='no'
193
194 # Explicit generation of initrd via update-initramfs.
195 # Default: 'yes'
196 # INITRD='no'
197
198 # If the specified file exists its content will be displayed at the end of the
199 # installation process.
200 # Useful for checking for errors and display warning message.
201 # Default: '/etc/debootstrap/install_notes' (empty file).
202 # INSTALL_NOTES='/etc/debootstrap/install_notes'
203
204 # Use fixed disk identifiers for Virtual Machine builds.
205 # Useful for reproducible builds.
206 # Default: 'no'
207 # FIXED_DISK_IDENTIFIERS='yes'
208
209 ## END OF FILE #################################################################