initial version of support for installation into a directory
[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 17 22:58:32 CET 2006 [mika]
7 ################################################################################
8
9 ################################################################################
10 # Important: you definitely have to adjust the following variables!
11 ################################################################################
12 ## The most important question: target of the new Debian system
13 ## Where should Debian be installed to?
14 #
15 # Usually you want to use a partition. If you specify a string *without* /dev/
16 # in the beginning, grml-debootstrap assumes you want to install Debian into a
17 # directory. If so then MKFS, TUNE2FS, GRUB, GROOT and FSCK won't apply, no
18 # matter of the configuration variables. Make sure the TARGET-directory is on a
19 # partition with present dev and exec mount options.
20 #
21 # usage examples:
22 # TARGET='/dev/hda1'
23 # TARGET='/mnt/grml'
24 TARGET=''
25
26 ## Do you want to install grub? Then adjust the variables GRUB and GROOT.
27 ## If you do not set the variables grub will not be installed.
28 # Where do you want to install grub to? Use grub syntax for specifying
29 # hints:  hd0,0 is the first partition on the first disk
30 #         hd0   is the MBR of the first disk
31 # usage example:
32 # GRUB='hd0'
33 GRUB=''
34
35 # specify root device for usage in grub (corresponds with $TARGET)
36 # notice: if you install Debian for example to /dev/hda1 use hd0,0
37 #         hd0,0 is the first partition on the first disk
38 #         hd0   is the MBR of the first disk
39 # usage example:
40 # GROOT='hd0,0'
41 GROOT=''
42
43 ################################################################################
44 # Now the variables you might want to adjust, but need not to...
45
46 # set mirror where debootstrap should download packages from
47 MIRROR='ftp://ftp.debian.de/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='ftp://ftp.debian.de/debian'
52
53 # release (which Debian version should be installed)
54 # supported values: sarge etch sid
55 RELEASE='etch'
56
57 # architecture (not yet officially supported by grml-debootstrap, work in progress)
58 # if unset the default (i386) will be taken
59 # notice: installing an amd64 system requires a 64bit kernel
60 #         do not forget to adjust $KERNEL for selected architecture as well
61 # ARCH='amd64'
62
63 # hostname of new system
64 HOSTNAME='grml'
65
66 # kernel version which should be installed
67 # do not forget to adjust according to architecture, for example
68 # use 2.6-686 for i386 and 2.6-amd64 for amd64
69 KERNEL='2.6-686'
70
71 # name of debootstrap executable
72 # supported values: debootstrap cdebootstrap
73 DEBOOTSTRAP='debootstrap'
74
75 # install packages defined in /etc/debootstrap/packages?
76 PACKAGES='yes'
77
78 # place of config files for debootstrap
79 CONFFILES='/etc/debootstrap/'
80
81 # mount point where chroot actions should take place
82 MNTPOINT='/mnt/test'
83
84 # executable which should be run on $TARGET
85 # unset it if you do not want to use it
86 MKFS='mkfs.ext3'
87
88 # deactivate automatic filesystem check on $TARGET?
89 # unset it if you do not want to use it
90 TUNE2FS='tune2fs -c0 -i0'
91
92 # check filesystem when chroot stuff finished?
93 FSCK='yes'
94
95 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
96 # FSCKTOOL=''
97
98 # which packages do you want do dpkg-reconfigure?
99 RECONFIGURE='locales console-data'
100
101 # use /etc/debootstrap/locale.gen for configuration of locales?
102 LOCALES='yes'
103
104 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
105 TIMEZONE='Europe/Vienna'
106
107 # generate initrd via update-initramfs?
108 # notice: won't do anything when release is sarge as update-initramfs does not exist there
109 INITRD='yes'
110
111 ## END OF FILE #################################################################