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