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