230f5ad1bb7b2d148c401fe90620303528cdf5ef
[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 # which bootmanager do you want to use? [grub|lilo]
19 BOOTMGR='grub'
20
21 # if using grub, where do you want to install grub to?
22 GROOT='hd0,0'
23
24 ################################################################################
25
26 # kernel version
27 KERNEL='linux-image-686'
28
29 # name of debootstrap executable
30 DEBOOTSTRAP='debootstrap'
31
32 # install packages defined in /etc/debootstrap/packages?
33 PACKAGES='yes'
34
35 # place of config files for debootstrap
36 CONFFILES='/etc/debootstrap/'
37
38 # mount point where chroot actions should take place
39 MNTPOINT='/mnt/test'
40
41 # set mirror where debootstrap should download packages from
42 MIRROR='ftp://ftp.tugraz.at/mirror/debian'
43
44 # specify entry which should be used for /etc/apt/sources.list,
45 # if empty then any existing /etc/apt/sources.list will be taken
46 CHROOTMIRROR='deb ftp://ftp.tugraz.at/mirror/debian unstable main contrib non-free'
47
48 # release (which Debian version should be installed)
49 RELEASE='etch'
50
51 # hostname of new system
52 HOSTNAME='grml'
53
54 # executable which should be run on $TARGET
55 MKFS='mkfs.ext3'
56
57 # which packages do you want do dpkg-reconfigure?
58 RECONFIGURE='locales console-data'
59
60 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
61 TIMEZONE='Europe/Vienna'
62
63 # generate initrd?
64 INITRD='yes'
65
66 ## END OF FILE #################################################################