6c71915ada41edb134bf8b9bdd6faf77efdde410
[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: Mon Nov 06 15:40:40 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? use grub syntax for specifying
18 # notice: hd0,0 is first partition on first disk
19 #         hd0   is MBR of first disk
20 # usage example:
21 # GROOT='hd0,0'
22 GROOT=''
23
24 ################################################################################
25 # Now the variables you might want to adjust, but need not to...
26
27 # set mirror where debootstrap should download packages from
28 MIRROR='ftp://ftp.debian.de/debian'
29
30 # specify entry which should be used for /etc/apt/sources.list,
31 # if empty then any existing /etc/apt/sources.list will be taken
32 CHROOTMIRROR='ftp://ftp.debian.de/debian'
33
34 # release (which Debian version should be installed)
35 RELEASE='etch'
36
37 # hostname of new system
38 HOSTNAME='grml'
39
40 # kernel version which should be installed
41 KERNEL='2.6-686'
42
43 # name of debootstrap executable
44 # supported values: debootstrap cdebootstrap
45 DEBOOTSTRAP='debootstrap'
46
47 # install packages defined in /etc/debootstrap/packages?
48 PACKAGES='yes'
49
50 # place of config files for debootstrap
51 CONFFILES='/etc/debootstrap/'
52
53 # mount point where chroot actions should take place
54 MNTPOINT='/mnt/test'
55
56 # executable which should be run on $TARGET
57 # unset it if you do not want to use it
58 MKFS='mkfs.ext3'
59
60 # deactivate automatic filesystem check on $TARGET?
61 # unset it if you do not want to use it
62 TUNE2FS='tune2fs -c0 -i0'
63
64 # check filesystem when chroot stuff finished?
65 FSCK='yes'
66
67 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
68 # FSCKTOOL=''
69
70 # which packages do you want do dpkg-reconfigure?
71 RECONFIGURE='locales console-data'
72
73 # use /etc/debootstrap/locale.gen for configuration of locales?
74 LOCALES='yes'
75
76 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
77 TIMEZONE='Europe/Vienna'
78
79 # generate initrd via update-initramfs?
80 # notice: won't do anything when release is sarge as update-initramfs does not exist there
81 INITRD='yes'
82
83 ## END OF FILE #################################################################