895adb449d0692b3787f139d51f87dcdb5b6bb16
[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: Fre Nov 10 00:52:27 CET 2006 [mika]
7 ################################################################################
8
9 ################################################################################
10 # Important: you definitely have to adjust the following variables!
11 ################################################################################
12 ## The most important question: target partition for new Debian system
13 # Where should Debian be installed to?
14 # usage example:
15 # TARGET='/dev/hda1'
16 TARGET=''
17
18 ## Do you want to install grub? Then adjust the variables GRUB and GROOT.
19 ## If you do not set the variables grub will not be installed.
20 # Where do you want to install grub to? Use grub syntax for specifying
21 # hints:  hd0,0 is the first partition on the first disk
22 #         hd0   is the MBR of the first disk
23 # usage example:
24 # GRUB='hd0'
25 GRUB=''
26
27 # specify root device for usage in grub (corresponds with $TARGET)
28 # notice: if you install Debian for example to /dev/hda1 use hd0,0
29 #         hd0,0 is the first partition on the first disk
30 #         hd0   is the MBR of the first disk
31 # usage example:
32 # GROOT='hd0,0'
33 GROOT=''
34
35 ################################################################################
36 # Now the variables you might want to adjust, but need not to...
37
38 # set mirror where debootstrap should download packages from
39 MIRROR='ftp://ftp.debian.de/debian'
40
41 # specify entry which should be used for /etc/apt/sources.list,
42 # if empty then any existing /etc/apt/sources.list will be taken
43 CHROOTMIRROR='ftp://ftp.debian.de/debian'
44
45 # release (which Debian version should be installed)
46 # supported values: sarge etch sid
47 RELEASE='etch'
48
49 # architecture (not yet officially supported by grml-debootstrap, work in progress)
50 # if unset the default (i386) will be taken
51 # notice: installing an amd64 system requires a 64bit kernel
52 #         do not forget to adjust $KERNEL for selected architecture as well
53 # ARCH='amd64'
54
55 # hostname of new system
56 HOSTNAME='grml'
57
58 # kernel version which should be installed
59 # do not forget to adjust according to architecture, for example
60 # use 2.6-686 for i386 and 2.6-amd64 for amd64
61 KERNEL='2.6-686'
62
63 # name of debootstrap executable
64 # supported values: debootstrap cdebootstrap
65 DEBOOTSTRAP='debootstrap'
66
67 # install packages defined in /etc/debootstrap/packages?
68 PACKAGES='yes'
69
70 # place of config files for debootstrap
71 CONFFILES='/etc/debootstrap/'
72
73 # mount point where chroot actions should take place
74 MNTPOINT='/mnt/test'
75
76 # executable which should be run on $TARGET
77 # unset it if you do not want to use it
78 MKFS='mkfs.ext3'
79
80 # deactivate automatic filesystem check on $TARGET?
81 # unset it if you do not want to use it
82 TUNE2FS='tune2fs -c0 -i0'
83
84 # check filesystem when chroot stuff finished?
85 FSCK='yes'
86
87 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
88 # FSCKTOOL=''
89
90 # which packages do you want do dpkg-reconfigure?
91 RECONFIGURE='locales console-data'
92
93 # use /etc/debootstrap/locale.gen for configuration of locales?
94 LOCALES='yes'
95
96 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
97 TIMEZONE='Europe/Vienna'
98
99 # generate initrd via update-initramfs?
100 # notice: won't do anything when release is sarge as update-initramfs does not exist there
101 INITRD='yes'
102
103 ## END OF FILE #################################################################