Update for release
[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: etch (old-stable), lenny (stable),
67 #                   squeeze (testing), sid (unstable)
68 RELEASE='lenny'
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 # To pass extra parameters to the debootstrap command. This feature allows
97 # grml-debootstrap to pass extra parameters, e.g., --include=, --exclude=,
98 # --components=, etc to debootstrap. E.g.,
99 # DEBOOTSTRAP_OPT='--include=debconf-utils,locales,pciutils --exclude=nano,tasksel,tasksel-data,iptables'
100
101 # Which debconf-frontend should be used?
102 DEBIAN_FRONTEND='noninteractive'
103
104 # execute aptitude/apt-get with any special options?
105 # DPKG_OPTIONS='-o APT::Get::AllowUnauthenticated=true -o aptitude::Cmdline::ignore-trust-violations=yes'
106
107 # The single steps/stages of grml-deboostrap are stored inside /var/cache/grml-debootstrap
108 # by default. Use another directory instead?
109 # STAGES='/var/cache/grml-debootstrap'
110
111 # install packages defined in /etc/debootstrap/packages?
112 PACKAGES='yes'
113
114 # pre-seed packages using /etc/debootstrap/debconf-selections (if exist)?
115 DEBCONF='yes'
116
117 # execute scripts from /etc/debootstrap/chroot-scripts/ inside the chroot?
118 CHROOT_SCRIPTS='yes'
119
120 # execute scripts from /etc/debootstrap/scripts/ after setting up chroot?
121 SCRIPTS='yes'
122
123 # install extra packages (.deb) from /etc/debootstrap/extrapackages/?
124 EXTRAPACKAGES='yes'
125
126 # place of config files for debootstrap
127 CONFFILES='/etc/debootstrap'
128
129 # mount point where chroot actions should take place
130 # MNTPOINT='/mnt/debootstrap'
131
132 # executable which should be run on $TARGET
133 # unset it if you do not want to use it
134 MKFS='mkfs.ext3'
135
136 # deactivate automatic filesystem check on $TARGET?
137 # unset it if you do not want to use it
138 TUNE2FS='tune2fs -c0 -i0'
139
140 # check filesystem when chroot stuff finished?
141 FSCK='yes'
142
143 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
144 # FSCKTOOL=''
145
146 # which packages do you want do dpkg-reconfigure?
147 # RECONFIGURE='locales console-data'
148 RECONFIGURE='console-data'
149
150 # use /etc/debootstrap/locale.gen for configuration of locales?
151 LOCALES='yes'
152
153 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
154 TIMEZONE='Europe/Vienna'
155
156 # generate initrd via update-initramfs?
157 INITRD='yes'
158
159 # this file contains information that has been caught during
160 # installation and will be displayed at the end of the installation
161 INSTALL_NOTES='/etc/debootstrap/install_notes'
162
163 ## END OF FILE #################################################################