ce68e2044be98cf09175e9709d3fa1f103c8a6b2
[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: etch (old-stable), lenny (stable),
75 #                   squeeze (testing), sid (unstable)
76 RELEASE='lenny'
77
78 # architecture
79 # if unset the default of the running system (see 'dpkg --print-architecture') will be taken
80 # notice: installing an amd64 system requires a 64bit kernel
81 #         do not forget to adjust $KERNEL for selected architecture as well
82 # ARCH='amd64'
83
84 # hostname of new system
85 HOSTNAME='grml'
86
87 # kernel version which should be installed
88 # do not forget to adjust according to architecture, for example
89 # use 2.6-686 for i386 and 2.6-amd64 for amd64
90 # KERNEL='2.6-686'
91
92 # set password of user root without prompting, please use with caution
93 # only, because you usually don't want to share your password(s) ;-)
94 # ROOTPASSWORD=''
95
96 # name of debootstrap executable
97 # supported values: debootstrap cdebootstrap
98 DEBOOTSTRAP='debootstrap'
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 # The single steps/stages of grml-deboostrap are stored inside /var/cache/grml-debootstrap
109 # by default. Use another directory instead?
110 # STAGES='/var/cache/grml-debootstrap'
111
112 # install packages defined in /etc/debootstrap/packages?
113 PACKAGES='yes'
114
115 # pre-seed packages using /etc/debootstrap/debconf-selections (if exist)?
116 DEBCONF='yes'
117
118 # execute scripts from /etc/debootstrap/chroot-scripts/ inside the chroot?
119 CHROOT_SCRIPTS='yes'
120
121 # execute scripts from /etc/debootstrap/scripts/ after setting up chroot?
122 SCRIPTS='yes'
123
124 # install extra packages (.deb) from /etc/debootstrap/extrapackages/?
125 EXTRAPACKAGES='yes'
126
127 # place of config files for debootstrap
128 CONFFILES='/etc/debootstrap'
129
130 # mount point where chroot actions should take place
131 # MNTPOINT='/mnt/debootstrap'
132
133 # executable which should be run on $TARGET
134 # unset it if you do not want to use it
135 MKFS='mkfs.ext3'
136
137 # deactivate automatic filesystem check on $TARGET?
138 # unset it if you do not want to use it
139 TUNE2FS='tune2fs -c0 -i0'
140
141 # check filesystem when chroot stuff finished?
142 FSCK='yes'
143
144 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
145 # FSCKTOOL=''
146
147 # which packages do you want do dpkg-reconfigure?
148 # RECONFIGURE='locales console-data'
149 RECONFIGURE='console-data'
150
151 # use /etc/debootstrap/locale.gen for configuration of locales?
152 LOCALES='yes'
153
154 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
155 TIMEZONE='Europe/Vienna'
156
157 # generate initrd via update-initramfs?
158 INITRD='yes'
159
160 ## END OF FILE #################################################################