added 'Test matrix' to TODO
[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 03 17:14:33 CET 2006 [mika]
7 ################################################################################
8
9 ################################################################################
10 # Important: you definitely have to adjust the following variables!
11 ################################################################################
12 # target partition (where should Debian be installed to)
13 # usage example:
14 # TARGET='/dev/hda1'
15 TARGET=''
16
17 # where do you want to install grub to?
18 # notice: hd0,0 is *first* partition on *first* disk (/dev/sda1 + /dev/hda1)
19 # usage example:
20 # GROOT='hd0,0'
21 GROOT=''
22
23 # partition for use with grub-install
24 # usage example:
25 # MBR='/dev/hda'
26 MBR=''
27
28 ################################################################################
29
30 # kernel version
31 KERNEL='linux-image-686'
32
33 # name of debootstrap executable
34 DEBOOTSTRAP='debootstrap'
35
36 # install packages defined in /etc/debootstrap/packages?
37 PACKAGES='yes'
38
39 # place of config files for debootstrap
40 CONFFILES='/etc/debootstrap/'
41
42 # mount point where chroot actions should take place
43 MNTPOINT='/mnt/test'
44
45 # set mirror where debootstrap should download packages from
46 MIRROR='ftp://ftp.tugraz.at/mirror/debian'
47
48 # specify entry which should be used for /etc/apt/sources.list,
49 # if empty then any existing /etc/apt/sources.list will be taken
50 CHROOTMIRROR='deb ftp://ftp.tugraz.at/mirror/debian unstable main contrib non-free'
51
52 # release (which Debian version should be installed)
53 RELEASE='etch'
54
55 # hostname of new system
56 HOSTNAME='grml'
57
58 # executable which should be run on $TARGET
59 # unset it if you do not want to use it
60 MKFS='mkfs.ext3'
61
62 # deactivate automatic filesystem check on $TARGET?
63 # unset it if you do not want to use it
64 TUNE2FS='tune2fs -c0 -i0'
65
66 # check filesystem when chroot stuff finished?
67 FSCK='yes'
68
69 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
70 # FSCKTOOL=''
71
72 # which packages do you want do dpkg-reconfigure?
73 RECONFIGURE='locales console-data'
74
75 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
76 TIMEZONE='Europe/Vienna'
77
78 # generate initrd?
79 INITRD='yes'
80
81 ## END OF FILE #################################################################