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