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