use /lib/grub/i386-pc/ for sarge
[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 23:19:35 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 # Now the variables you might want to adjust, but need not to...
30
31 # specify entry which should be used for /etc/apt/sources.list,
32 # if empty then any existing /etc/apt/sources.list will be taken
33 CHROOTMIRROR='ftp://ftp.tugraz.at/mirror/debian'
34
35 # release (which Debian version should be installed)
36 RELEASE='etch'
37
38 # hostname of new system
39 HOSTNAME='grml'
40
41 # kernel version which should be installed
42 KERNEL='2.6-686'
43
44 # name of debootstrap executable
45 # supported values: debootstrap cdebootstrap
46 DEBOOTSTRAP='debootstrap'
47
48 # install packages defined in /etc/debootstrap/packages?
49 PACKAGES='yes'
50
51 # place of config files for debootstrap
52 CONFFILES='/etc/debootstrap/'
53
54 # mount point where chroot actions should take place
55 MNTPOINT='/mnt/test'
56
57 # set mirror where debootstrap should download packages from
58 MIRROR='ftp://ftp.tugraz.at/mirror/debian'
59
60 # executable which should be run on $TARGET
61 # unset it if you do not want to use it
62 MKFS='mkfs.ext3'
63
64 # deactivate automatic filesystem check on $TARGET?
65 # unset it if you do not want to use it
66 TUNE2FS='tune2fs -c0 -i0'
67
68 # check filesystem when chroot stuff finished?
69 FSCK='yes'
70
71 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
72 # FSCKTOOL=''
73
74 # which packages do you want do dpkg-reconfigure?
75 RECONFIGURE='locales console-data'
76
77 # use /etc/debootstrap/locale.gen for configuration of locales?
78 LOCALES='yes'
79
80 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
81 TIMEZONE='Europe/Vienna'
82
83 # generate initrd via update-initramfs?
84 # notice: won't do anything when release is sarge as update-initramfs does not exist there
85 INITRD='yes'
86
87 ## END OF FILE #################################################################