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