Delete .hgtags
[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 should download packages from
50 MIRROR='ftp://ftp.debian.de/debian'
51
52 # specify entry which should be used for /etc/apt/sources.list,
53 # if empty then existing /etc/apt/sources.list will be taken
54 CHROOTMIRROR='ftp://ftp.debian.de/debian'
55
56 # specify directory of loopback mounted Debian-ISO so you don't
57 # have to download all the core packages via network but can
58 # use an available Debian-ISO instead
59 # ISO='file:/mnt/iso/debian/'
60
61 # do not build /etc/apt/sources.list on the fly. This allow user to
62 # provide their own apt sources.list from /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: sarge etch lenny sid
75 RELEASE='etch'
76
77 # architecture
78 # if unset the default of the running system (see 'dpkg --print-architecture') will be taken
79 # notice: installing an amd64 system requires a 64bit kernel
80 #         do not forget to adjust $KERNEL for selected architecture as well
81 # ARCH='amd64'
82
83 # hostname of new system
84 HOSTNAME='grml'
85
86 # kernel version which should be installed
87 # do not forget to adjust according to architecture, for example
88 # use 2.6-686 for i386 and 2.6-amd64 for amd64
89 # KERNEL='2.6-686'
90
91 # set password of user root without prompting, please use with caution
92 # only, because you usually don't want to share your password(s) ;-)
93 # ROOTPASSWORD=''
94
95 # name of debootstrap executable
96 # supported values: debootstrap cdebootstrap
97 DEBOOTSTRAP='debootstrap'
98
99 # To pass extra parameters to the debootstrap command. This feature allows
100 # grml-debootstrap to pass extra parameters, e.g., --include=, --exclude=,
101 # --components=, etc to debootstrap. E.g.,
102 # DEBOOTSTRAP_OPT='--include=debconf-utils,locales,pciutils --exclude=nano,tasksel,tasksel-data,iptables'
103
104 # Which debconf-frontend should be used?
105 DEBIAN_FRONTEND='noninteractive'
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 # install extra packages (.deb) from /etc/debootstrap/extrapackages/?
118 EXTRAPACKAGES='yes'
119
120 # place of config files for debootstrap
121 CONFFILES='/etc/debootstrap/'
122
123 # mount point where chroot actions should take place
124 # MNTPOINT='/mnt/debootstrap'
125
126 # executable which should be run on $TARGET
127 # unset it if you do not want to use it
128 MKFS='mkfs.ext3'
129
130 # deactivate automatic filesystem check on $TARGET?
131 # unset it if you do not want to use it
132 TUNE2FS='tune2fs -c0 -i0'
133
134 # check filesystem when chroot stuff finished?
135 FSCK='yes'
136
137 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
138 # FSCKTOOL=''
139
140 # which packages do you want do dpkg-reconfigure?
141 RECONFIGURE='locales console-data'
142
143 # use /etc/debootstrap/locale.gen for configuration of locales?
144 LOCALES='yes'
145
146 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
147 TIMEZONE='Europe/Vienna'
148
149 # generate initrd via update-initramfs?
150 # notice: won't do anything when release is sarge as update-initramfs does not exist there
151 INITRD='yes'
152
153 ## END OF FILE #################################################################