36ff55907190e95724048803cbe441ef0ab1d022
[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 00:23:46 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 TARGET=''
14
15 # where should the bootmanager installed to?
16 BOOT=''
17
18 ################################################################################
19
20 # kernel version
21 KERNEL='linux-image-686'
22
23 # name of debootstrap executable
24 DEBOOTSTRAP='debootstrap'
25
26 # place of config files for debootstrap
27 CONFFILES='/etc/debootstrap/'
28
29 # mount point where chroot actions should take place
30 MNTPOINT='/mnt/test'
31
32 # mirror (download packages from)
33 MIRROR='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 # executable which should be run on $TARGET
42 MKFS='mkfs.ext3'
43
44 # which packages do you want do dpkg-reconfigure?
45 RECONFIGURE='locales console-data'
46
47 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
48 TIMEZONE='Europe/Vienna'
49
50 # generate initrd?
51 INITRD='yes'
52
53 # which bootmanager do you want to use? [grub|lilo]
54 BOOTMGR='grub'
55
56 ## END OF FILE #################################################################