72ad3f630b37a336b7eee79b47e442cdc1aa3687
[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: Sam Nov 18 10:32:30 CET 2006 [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 ################################################################################
44 # Now the variables you might want to adjust, but need not to...
45
46 # set mirror where debootstrap should download packages from
47 MIRROR='ftp://ftp.debian.de/debian'
48
49 # specify entry which should be used for /etc/apt/sources.list,
50 # if empty then any existing /etc/apt/sources.list will be taken
51 CHROOTMIRROR='ftp://ftp.debian.de/debian'
52
53 # add grml repository to /etc/apt/sources.list
54 # if empty then the repository won't be added (notice: in testing phase)
55 # GRMLREPOS='yes'
56
57 # install packages from grml-pool? requires activated $GRMLREPOS from above
58 # if empty nothing will be added (notice: in testing phase)
59 # GRMLPACKAGES='grml-etc-core'
60
61 # release (which Debian version should be installed)
62 # supported values: sarge etch sid
63 RELEASE='etch'
64
65 # architecture (not yet officially supported by grml-debootstrap, work in progress)
66 # if unset the default (i386) will be taken
67 # notice: installing an amd64 system requires a 64bit kernel
68 #         do not forget to adjust $KERNEL for selected architecture as well
69 # ARCH='amd64'
70
71 # hostname of new system
72 HOSTNAME='grml'
73
74 # kernel version which should be installed
75 # do not forget to adjust according to architecture, for example
76 # use 2.6-686 for i386 and 2.6-amd64 for amd64
77 KERNEL='2.6-686'
78
79 # name of debootstrap executable
80 # supported values: debootstrap cdebootstrap
81 DEBOOTSTRAP='debootstrap'
82
83 # install packages defined in /etc/debootstrap/packages?
84 PACKAGES='yes'
85
86 # place of config files for debootstrap
87 CONFFILES='/etc/debootstrap/'
88
89 # mount point where chroot actions should take place
90 MNTPOINT='/mnt/test'
91
92 # executable which should be run on $TARGET
93 # unset it if you do not want to use it
94 MKFS='mkfs.ext3'
95
96 # deactivate automatic filesystem check on $TARGET?
97 # unset it if you do not want to use it
98 TUNE2FS='tune2fs -c0 -i0'
99
100 # check filesystem when chroot stuff finished?
101 FSCK='yes'
102
103 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
104 # FSCKTOOL=''
105
106 # which packages do you want do dpkg-reconfigure?
107 RECONFIGURE='locales console-data'
108
109 # use /etc/debootstrap/locale.gen for configuration of locales?
110 LOCALES='yes'
111
112 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
113 TIMEZONE='Europe/Vienna'
114
115 # generate initrd via update-initramfs?
116 # notice: won't do anything when release is sarge as update-initramfs does not exist there
117 INITRD='yes'
118
119 ## END OF FILE #################################################################