Use asciidoc for manpage generation.
[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 Apr 16 14:17:19 CEST 2007 [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 existing /etc/apt/sources.list will be taken
51 CHROOTMIRROR='ftp://ftp.debian.de/debian'
52
53 # add grml repository to /etc/apt/sources.list
54 # if empty then the repository won't be added (notice: in testing phase)
55 # GRMLREPOS='yes'
56
57 # install packages from grml-pool? requires activated $GRMLREPOS from above
58 # if empty nothing will be added (notice: in testing phase)
59 # GRMLPACKAGES='grml-etc-core'
60
61 # release (which Debian version should be installed)
62 # supported values: sarge etch lenny sid
63 RELEASE='etch'
64
65 # architecture
66 # if unset the default of the running system (see 'dpkg --print-architecture') will be taken
67 # notice: installing an amd64 system requires a 64bit kernel
68 #         do not forget to adjust $KERNEL for selected architecture as well
69 # ARCH='amd64'
70
71 # hostname of new system
72 HOSTNAME='grml'
73
74 # kernel version which should be installed
75 # do not forget to adjust according to architecture, for example
76 # use 2.6-686 for i386 and 2.6-amd64 for amd64
77 # KERNEL='2.6-686'
78
79 # name of debootstrap executable
80 # supported values: debootstrap cdebootstrap
81 DEBOOTSTRAP='debootstrap'
82
83 # Which debconf-frontend should be used?
84 DEBIAN_FRONTEND='noninteractive'
85
86 # The single steps/stages of grml-deboostrap are stored inside /etc/debootstrap/stages
87 # by default. Use another directory instead?
88 # STAGES='/etc/debootstrap/stages'
89
90 # install packages defined in /etc/debootstrap/packages?
91 PACKAGES='yes'
92
93 # place of config files for debootstrap
94 CONFFILES='/etc/debootstrap/'
95
96 # mount point where chroot actions should take place
97 MNTPOINT='/mnt/test'
98
99 # executable which should be run on $TARGET
100 # unset it if you do not want to use it
101 MKFS='mkfs.ext3'
102
103 # deactivate automatic filesystem check on $TARGET?
104 # unset it if you do not want to use it
105 TUNE2FS='tune2fs -c0 -i0'
106
107 # check filesystem when chroot stuff finished?
108 FSCK='yes'
109
110 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
111 # FSCKTOOL=''
112
113 # which packages do you want do dpkg-reconfigure?
114 RECONFIGURE='locales console-data'
115
116 # use /etc/debootstrap/locale.gen for configuration of locales?
117 LOCALES='yes'
118
119 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
120 TIMEZONE='Europe/Vienna'
121
122 # generate initrd via update-initramfs?
123 # notice: won't do anything when release is sarge as update-initramfs does not exist there
124 INITRD='yes'
125
126 ## END OF FILE #################################################################