update notes regarding grub in config file; add grml-etc-core to depends
[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 22:31:08 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 # hostname of new system
50 HOSTNAME='grml'
51
52 # kernel version which should be installed
53 KERNEL='2.6-686'
54
55 # name of debootstrap executable
56 # supported values: debootstrap cdebootstrap
57 DEBOOTSTRAP='debootstrap'
58
59 # install packages defined in /etc/debootstrap/packages?
60 PACKAGES='yes'
61
62 # place of config files for debootstrap
63 CONFFILES='/etc/debootstrap/'
64
65 # mount point where chroot actions should take place
66 MNTPOINT='/mnt/test'
67
68 # executable which should be run on $TARGET
69 # unset it if you do not want to use it
70 MKFS='mkfs.ext3'
71
72 # deactivate automatic filesystem check on $TARGET?
73 # unset it if you do not want to use it
74 TUNE2FS='tune2fs -c0 -i0'
75
76 # check filesystem when chroot stuff finished?
77 FSCK='yes'
78
79 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
80 # FSCKTOOL=''
81
82 # which packages do you want do dpkg-reconfigure?
83 RECONFIGURE='locales console-data'
84
85 # use /etc/debootstrap/locale.gen for configuration of locales?
86 LOCALES='yes'
87
88 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
89 TIMEZONE='Europe/Vienna'
90
91 # generate initrd via update-initramfs?
92 # notice: won't do anything when release is sarge as update-initramfs does not exist there
93 INITRD='yes'
94
95 ## END OF FILE #################################################################