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