979f5740e68e2b1f54c1aa7323d960e3802f7fdc
[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 18:45: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 # specifiy additional bootparameters for usage in grub 
44 # e.g. "pci=nomsi"
45 BOOT_APPEND=''
46
47 ################################################################################
48 # Now the variables you might want to adjust, but need not to...
49
50 # set mirror where debootstrap should download packages from
51 MIRROR='ftp://ftp.debian.de/debian'
52
53 # specify entry which should be used for /etc/apt/sources.list,
54 # if empty then existing /etc/apt/sources.list will be taken
55 CHROOTMIRROR='ftp://ftp.debian.de/debian'
56
57 # add grml repository to /etc/apt/sources.list
58 # if empty then the repository won't be added (notice: in testing phase)
59 # GRMLREPOS='yes'
60
61 # install packages from grml-pool? requires activated $GRMLREPOS from above
62 # if empty nothing will be added (notice: in testing phase)
63 # GRMLPACKAGES='grml-etc-core'
64
65 # release (which Debian version should be installed)
66 # supported values: sarge etch lenny sid
67 RELEASE='etch'
68
69 # architecture
70 # if unset the default of the running system (see 'dpkg --print-architecture') will be taken
71 # notice: installing an amd64 system requires a 64bit kernel
72 #         do not forget to adjust $KERNEL for selected architecture as well
73 # ARCH='amd64'
74
75 # hostname of new system
76 HOSTNAME='grml'
77
78 # kernel version which should be installed
79 # do not forget to adjust according to architecture, for example
80 # use 2.6-686 for i386 and 2.6-amd64 for amd64
81 # KERNEL='2.6-686'
82
83 # set password of user root without prompting, please use with caution
84 # only, because you usually don't want to share your password(s) ;-)
85 # ROOTPASSWORD=''
86
87 # name of debootstrap executable
88 # supported values: debootstrap cdebootstrap
89 DEBOOTSTRAP='debootstrap'
90
91 # Which debconf-frontend should be used?
92 DEBIAN_FRONTEND='noninteractive'
93
94 # The single steps/stages of grml-deboostrap are stored inside /etc/debootstrap/stages
95 # by default. Use another directory instead?
96 # STAGES='/etc/debootstrap/stages'
97
98 # install packages defined in /etc/debootstrap/packages?
99 PACKAGES='yes'
100
101 # install extra packages in /etc/debootstrap/
102 EXTRAPACKAGES='yes'
103
104 # place of config files for debootstrap
105 CONFFILES='/etc/debootstrap/'
106
107 # mount point where chroot actions should take place
108 MNTPOINT='/mnt/test'
109
110 # executable which should be run on $TARGET
111 # unset it if you do not want to use it
112 MKFS='mkfs.ext3'
113
114 # deactivate automatic filesystem check on $TARGET?
115 # unset it if you do not want to use it
116 TUNE2FS='tune2fs -c0 -i0'
117
118 # check filesystem when chroot stuff finished?
119 FSCK='yes'
120
121 # which tool should be used for fsck? if unset the tool will be guesst based on $MKFS
122 # FSCKTOOL=''
123
124 # which packages do you want do dpkg-reconfigure?
125 RECONFIGURE='locales console-data'
126
127 # use /etc/debootstrap/locale.gen for configuration of locales?
128 LOCALES='yes'
129
130 # use /usr/share/zoneinfo/$TIMEZONE for /etc/localtime
131 TIMEZONE='Europe/Vienna'
132
133 # generate initrd via update-initramfs?
134 # notice: won't do anything when release is sarge as update-initramfs does not exist there
135 INITRD='yes'
136
137 ## END OF FILE #################################################################