add BOOT_APPEND to GRUB_CMDLINE_LINUX_DEFAULT
[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://cdn.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 # Debian release that should be installed.
66 # Supported values: lenny (old-stable), squeeze (stable),
67 #                   wheezy (testing), sid (unstable)
68 # Default: 'squeeze'
69 # RELEASE='squeeze'
70
71 # Define components that should be used within sources.list.
72 # Default: 'main contrib non-free'
73 # COMPONENTS='main contrib non-free'
74
75 # Set target architecture.
76 # Only useful when installing i386 while running an amd64 kernel.
77 # Default: current architecture. (From 'dpkg —print-architecture'.)
78 # ARCH='amd64'
79
80 # Hostname of new system.
81 # Default: 'grml'
82 # HOSTNAME='grml'
83
84 # Kernel version to install.
85 # Default: according to current architecture.
86 # KERNEL='2.6-686'
87
88 # Set initial password for the root user.
89 # Please change this password after installation for security reasons.
90 # Default: no default.
91 # ROOTPASSWORD=''
92
93 # Name of debootstrap executable.
94 # Supported values: 'debootstrap', 'cdebootstrap'
95 # Default: 'debootstrap'
96 # DEBOOTSTRAP='debootstrap'
97
98 # Pass extra options to debootstrap.
99 # Default: no default.
100 # Usage example:
101 # DEBOOTSTRAP_OPT='--include=debconf-utils,locales,pciutils --exclude=nano,tasksel,tasksel-data,iptables'
102
103 # debconf-frontend that should be used.
104 # Default: 'noninteractive'
105 # DEBIAN_FRONTEND='noninteractive'
106
107 # Pass extra options to aptitude/apt-get.
108 # Default: no default.
109 # DPKG_OPTIONS='-o APT::Get::AllowUnauthenticated=true -o aptitude::Cmdline::ignore-trust-violations=yes'
110
111 # Use custom grml-debootstrap stages.
112 # Specify path to your custom grml-debootstrap stages.
113 # Default: '/var/cache/grml-debootstrap'
114 # STAGES='/var/cache/grml-debootstrap'
115
116 # Install packages defined in /etc/debootstrap/packages.
117 # Default: 'yes'
118 # PACKAGES='no'
119
120 # Pre-seed DebConf questions from /etc/debootstrap/debconf-selections.
121 # Default: 'yes' (if file exists)
122 # DEBCONF='no'
123
124 # Run scripts from /etc/debootstrap/chroot-scripts/ inside chroot.
125 # Default: 'yes'
126 # CHROOT_SCRIPTS='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/pre-scripts/ after setting up chroot.
133 # Default: 'yes'
134 # SCRIPTS='no'
135
136 # Install *.deb packages from /etc/debootstrap/extrapackages/
137 # Default: 'yes'
138 # EXTRAPACKAGES='no'
139
140 # Location of config files for debootstrap.
141 # Default: '/etc/debootstrap'
142 # CONFFILES='/etc/debootstrap'
143
144 # Mount point to use during installation.
145 # Default: no default.
146 # MNTPOINT='/mnt/debootstrap'
147
148 # File system creation tool to apply on $TARGET.
149 # If empty, no file system will be created.
150 # Default: 'mkfs.ext3'
151 # MKFS=''
152
153 # Filesystem tuning tool to apply on $TARGET.
154 # If empty, the created file system will not be tuned.
155 # Default: 'tune2fs -c0 -i0' if ext* filesystem is used, no default otherwise.
156 # TUNE2FS='tune2fs -c0 -i0'
157
158 # Check file system after installation is finished.
159 # Default: 'no'
160 # FSCK='yes'
161
162 # File system checking tool to apply on $TARGET.
163 # Default: guessed.
164 # FSCKTOOL=''
165
166 # Packages that should be 'dpkg-reconfigure'-ed while installation.
167 # Default: 'console-data'.
168 # RECONFIGURE='console-data'
169
170 # Generate locales using /etc/debootstrap/locale.gen configuration file.
171 # Default: 'yes'
172 # LOCALES='no'
173
174 # Use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime.
175 # Default: 'Europe/Vienna'
176 # TIMEZONE='Europe/Vienna'
177
178 # Clean APT cache after installation is finished.
179 # Default: 'yes'
180 # RM_APTCACHE='no'
181
182 # Upgrade system via apt-get/aptitude update + [safe-]upgrade.
183 # Default: 'yes'
184 # UPGRADE_SYSTEM='no'
185
186 # Explicit generation of initrd via update-initramfs.
187 # Default: 'yes'
188 # INITRD='no'
189
190 # If the specified file exists its content will be displayed at the end of the
191 # installation process.
192 # Useful for checking for errors and display warning message.
193 # Default: '/etc/debootstrap/install_notes' (empty file).
194 # INSTALL_NOTES='/etc/debootstrap/install_notes'
195
196 ## END OF FILE #################################################################