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