Some minor code cleanups
[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 # Latest change: Die Jun 05 14:00:07 CEST 2007 [mika]
7 ################################################################################
8
9 ################################################################################
10 # Important: you definitely have to adjust the following variables!
11 ################################################################################
12 ## The most important question: target of the new Debian system
13 ## Where should Debian be installed to?
14 #
15 # Usually you want to use a partition. If you specify a string *without* /dev/
16 # in the beginning, grml-debootstrap assumes you want to install Debian into a
17 # directory. If so then MKFS, TUNE2FS, GRUB, GROOT and FSCK won't apply, no
18 # matter of the configuration variables. Make sure the TARGET-directory is on a
19 # partition with present dev and exec mount options.
20 #
21 # usage examples:
22 # TARGET='/dev/hda1'
23 # TARGET='/mnt/grml'
24 TARGET=''
25
26 ## Do you want to install grub? Then adjust the variables GRUB and GROOT.
27 ## If you do not set the variables grub will not be installed.
28 # Where do you want to install grub to? Use grub syntax for specifying
29 # hints:  hd0,0 is the first partition on the first disk
30 #         hd0   is the MBR of the first disk
31 # usage example:
32 # GRUB='hd0'
33 GRUB=''
34
35 # specify root device for usage in grub (corresponds with $TARGET)
36 # notice: if you install Debian for example to /dev/hda1 use hd0,0
37 #         hd0,0 is the first partition on the first disk
38 #         hd0   is the MBR of the first disk
39 # usage example:
40 # GROOT='hd0,0'
41 GROOT=''
42
43 # specifiy additional bootparameters for usage in grub 
44 # e.g. "pci=nomsi"
45 BOOT_APPEND=''
46
47 ################################################################################
48 # Now the variables you might want to adjust, but need not to...
49
50 # set mirror where debootstrap should download packages from
51 MIRROR='ftp://ftp.debian.de/debian'
52
53 # specify entry which should be used for /etc/apt/sources.list,
54 # if empty then existing /etc/apt/sources.list will be taken
55 CHROOTMIRROR='ftp://ftp.debian.de/debian'
56
57 # specify directory of loopback mounted Debian-ISO so you don't
58 # have to download all the core packages via network but can
59 # use an available Debian-ISO instead
60 # ISO='file:/mnt/iso/debian/'
61
62 # add grml repository to /etc/apt/sources.list
63 # if empty then the repository won't be added (notice: in testing phase)
64 # GRMLREPOS='yes'
65
66 # install packages from grml-pool? requires activated $GRMLREPOS from above
67 # if empty nothing will be added (notice: in testing phase)
68 # GRMLPACKAGES='grml-etc-core'
69
70 # release (which Debian version should be installed)
71 # supported values: sarge etch lenny sid
72 RELEASE='etch'
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 # Which debconf-frontend should be used?
97 DEBIAN_FRONTEND='noninteractive'
98
99 # The single steps/stages of grml-deboostrap are stored inside /etc/debootstrap/stages
100 # by default. Use another directory instead?
101 # STAGES='/etc/debootstrap/stages'
102
103 # install packages defined in /etc/debootstrap/packages?
104 PACKAGES='yes'
105
106 # install extra packages (.deb) from /etc/debootstrap/extrapackages/?
107 EXTRAPACKAGES='yes'
108
109 # place of config files for debootstrap
110 CONFFILES='/etc/debootstrap/'
111
112 # mount point where chroot actions should take place
113 # MNTPOINT='/mnt/debootstrap'
114
115 # executable which should be run on $TARGET
116 # unset it if you do not want to use it
117 MKFS='mkfs.ext3'
118
119 # deactivate automatic filesystem check on $TARGET?
120 # unset it if you do not want to use it
121 TUNE2FS='tune2fs -c0 -i0'
122
123 # check filesystem when chroot stuff finished?
124 FSCK='yes'
125
126 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
127 # FSCKTOOL=''
128
129 # which packages do you want do dpkg-reconfigure?
130 RECONFIGURE='locales console-data'
131
132 # use /etc/debootstrap/locale.gen for configuration of locales?
133 LOCALES='yes'
134
135 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
136 TIMEZONE='Europe/Vienna'
137
138 # generate initrd via update-initramfs?
139 # notice: won't do anything when release is sarge as update-initramfs does not exist there
140 INITRD='yes'
141
142 ## END OF FILE #################################################################