use
[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 12:27:17 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 # install packages defined in /etc/debootstrap/packages?
27 PACKAGES='yes'
28
29 # place of config files for debootstrap
30 CONFFILES='/etc/debootstrap/'
31
32 # mount point where chroot actions should take place
33 MNTPOINT='/mnt/test'
34
35 # set mirror where debootstrap should download packages from
36 MIRROR='ftp://ftp.tugraz.at/mirror/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='deb ftp://ftp.tugraz.at/mirror/debian unstable main contrib non-free'
41
42 # release (which Debian version should be installed)
43 RELEASE='etch'
44
45 # hostname of new system
46 HOSTNAME='grml'
47
48 # executable which should be run on $TARGET
49 MKFS='mkfs.ext3'
50
51 # which packages do you want do dpkg-reconfigure?
52 RECONFIGURE='locales console-data'
53
54 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
55 TIMEZONE='Europe/Vienna'
56
57 # generate initrd?
58 INITRD='yes'
59
60 # which bootmanager do you want to use? [grub|lilo]
61 BOOTMGR='grub'
62
63 ## END OF FILE #################################################################