daf4f2e3c788d559175a14ff0bdb0f8153221b63
[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: you definitely have to adjust the following variables!
10 ################################################################################
11 ## The most important question: target of the new Debian system
12 ## Where should Debian be installed to?
13 #
14 # Usually you want to use a partition. If you specify a string *without* /dev/
15 # in the beginning, grml-debootstrap assumes you want to install Debian into a
16 # directory. If so then MKFS, TUNE2FS, GRUB and FSCK won't apply, no matter of
17 # the configuration variables. Make sure the TARGET-directory is on a partition
18 # with present dev and exec mount options.
19 #
20 # usage examples:
21 # TARGET='/dev/hda1'
22 # TARGET='/mnt/grml'
23 TARGET=''
24
25 ## Do you want to install grub? Just specify the device you'd like to use.
26 ## Example: Specify /dev/sda to install into MBR (master boot record) of
27 ## /dev/sda. If you do not set the variable grub will not be installed.
28 ## Please note that grub can NOT be installed into a partition (like /dev/sda2)
29 ## but in the master boot record only (/dev/sda, /dev/sdb,...).
30 # Usage example:
31 # GRUB='/dev/sda'
32 GRUB=''
33
34 # specifiy additional bootparameters for usage in grub 
35 # e.g. "pci=nomsi"
36 BOOT_APPEND=''
37
38 ################################################################################
39 # Now the variables you might want to adjust, but need not to...
40
41 # set mirror where debootstrap and chrootscript should download
42 # packages from; if empty an existing
43 # /etc/debootstrap/etc/apt/sources.list is used instead
44 # MIRROR='ftp://ftp.de.debian.org/debian'
45 MIRROR='http://cdn.debian.net/debian'
46
47 # specify directory of loopback mounted Debian-ISO so you don't
48 # have to download all the core packages via network but can
49 # use an available Debian-ISO instead
50 # ISO='file:/mnt/iso/debian/'
51
52 # If /etc/apt/sources.list should NOT be build on the fly, this
53 # options allows providing a separate apt file via
54 # /etc/debootstrap/etc/apt/sources.list
55 # KEEP_SRC_LIST='yes'
56
57 # add grml repository to /etc/apt/sources.list
58 # if empty then the repository won't be added (notice: in testing phase)
59 # GRMLREPOS='yes'
60
61 # install packages from grml-pool? requires activated $GRMLREPOS from above
62 # if empty nothing will be added (notice: in testing phase)
63 # GRMLPACKAGES='grml-etc-core'
64
65 # release (which Debian version should be installed)
66 # supported values: lenny (old-stable), squeeze (stable),
67 #                   wheezy (testing), sid (unstable)
68 RELEASE='squeeze'
69
70 # define components that should be used within sources.list
71 # default:
72 # COMPONENTS='main contrib non-free'
73
74 # architecture
75 # if unset the default of the running system (see 'dpkg --print-architecture') will be taken
76 # notice: installing an amd64 system requires a 64bit kernel
77 #         do not forget to adjust $KERNEL for selected architecture as well
78 # ARCH='amd64'
79
80 # hostname of new system
81 HOSTNAME='grml'
82
83 # kernel version which should be installed
84 # do not forget to adjust according to architecture, for example
85 # use 2.6-686 for i386 and 2.6-amd64 for amd64
86 # KERNEL='2.6-686'
87
88 # set password of user root without prompting, please use with caution
89 # only, because you usually don't want to share your password(s) ;-)
90 # ROOTPASSWORD=''
91
92 # name of debootstrap executable
93 # supported values: debootstrap cdebootstrap
94 DEBOOTSTRAP='debootstrap'
95
96 # check signature of release file per default
97 # set to any other value then yes to disable signature checks.
98 SECURE='yes'
99
100 # To pass extra parameters to the debootstrap command. This feature allows
101 # grml-debootstrap to pass extra parameters, e.g., --include=, --exclude=,
102 # --components=, etc to debootstrap. E.g.,
103 # DEBOOTSTRAP_OPT='--include=debconf-utils,locales,pciutils --exclude=nano,tasksel,tasksel-data,iptables'
104
105 # Which debconf-frontend should be used?
106 DEBIAN_FRONTEND='noninteractive'
107
108 # execute aptitude/apt-get with any special options?
109 # DPKG_OPTIONS='-o APT::Get::AllowUnauthenticated=true -o aptitude::Cmdline::ignore-trust-violations=yes'
110
111 # The single steps/stages of grml-deboostrap are stored inside /var/cache/grml-debootstrap
112 # by default. Use another directory instead?
113 # STAGES='/var/cache/grml-debootstrap'
114
115 # install packages defined in /etc/debootstrap/packages?
116 PACKAGES='yes'
117
118 # pre-seed packages using /etc/debootstrap/debconf-selections (if exist)?
119 DEBCONF='yes'
120
121 # execute scripts from /etc/debootstrap/chroot-scripts/ inside the chroot?
122 CHROOT_SCRIPTS='yes'
123 #
124 # execute scripts from /etc/debootstrap/pre-scripts/ before setting up chroot?
125 PRE_SCRIPTS='yes'
126
127 # execute scripts from /etc/debootstrap/scripts/ after setting up chroot?
128 SCRIPTS='yes'
129
130 # install extra packages (.deb) from /etc/debootstrap/extrapackages/?
131 EXTRAPACKAGES='yes'
132
133 # place of config files for debootstrap
134 CONFFILES='/etc/debootstrap'
135
136 # mount point where chroot actions should take place
137 # MNTPOINT='/mnt/debootstrap'
138
139 # executable which should be run on $TARGET
140 # unset it if you do not want to use it
141 MKFS='mkfs.ext3'
142
143 # deactivate automatic filesystem check on $TARGET?
144 # unset it if you do not want to use it
145 TUNE2FS='tune2fs -c0 -i0'
146
147 # check filesystem when chroot stuff finished?
148 FSCK='yes'
149
150 # which tool should be used for fsck? if unset the tool will be guessed based on $MKFS
151 # FSCKTOOL=''
152
153 # which packages do you want do dpkg-reconfigure?
154 # RECONFIGURE='locales console-data'
155 RECONFIGURE='console-data'
156
157 # use /etc/debootstrap/locale.gen for configuration of locales?
158 LOCALES='yes'
159
160 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
161 TIMEZONE='Europe/Vienna'
162
163 # remove apt cache in chroot after installation of packages finished?
164 RM_APTCACHE='yes'
165
166 # generate initrd via update-initramfs?
167 INITRD='yes'
168
169 # this file contains information that has been caught during
170 # installation and will be displayed at the end of the installation
171 INSTALL_NOTES='/etc/debootstrap/install_notes'
172
173 ## END OF FILE #################################################################