check whether is already mounted
[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 00:23:46 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 # release (which Debian version should be installed)
39 RELEASE='etch'
40
41 # hostname of new system
42 HOSTNAME='grml'
43
44 # executable which should be run on $TARGET
45 MKFS='mkfs.ext3'
46
47 # which packages do you want do dpkg-reconfigure?
48 RECONFIGURE='locales console-data'
49
50 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
51 TIMEZONE='Europe/Vienna'
52
53 # generate initrd?
54 INITRD='yes'
55
56 # which bootmanager do you want to use? [grub|lilo]
57 BOOTMGR='grub'
58
59 ## END OF FILE #################################################################