run shadowconfig
[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 11:38:42 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 # mirror (download packages from)
36 MIRROR='ftp://ftp.tugraz.at/mirror/debian'
37
38 # entries for /etc/apt/sources.list (if empty the default is taken)
39 MIRROR_LIST="
40 deb     http://ftp.tu-graz.ac.at/mirror/debian        unstable        main contrib non-free
41 deb     http://ftp.de.debian.org/debian        unstable        main contrib non-free
42 "
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 MKFS='mkfs.ext3'
52
53 # which packages do you want do dpkg-reconfigure?
54 RECONFIGURE='locales console-data'
55
56 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
57 TIMEZONE='Europe/Vienna'
58
59 # generate initrd?
60 INITRD='yes'
61
62 # which bootmanager do you want to use? [grub|lilo]
63 BOOTMGR='grub'
64
65 ## END OF FILE #################################################################