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