chroot-script: put installation of kernel before installing additional packages
[grml-debootstrap.git] / debian / changelog
1 grml-debootstrap (0.27) unstable; urgency=low
2
3   * New features:
4     - support setting Debian suite components (like main, contrib,...)
5       through COMPONENTS so it's possible to use a simple 'main' mirror.
6     - support setting aptitude/apt-get options through $DPKG_OPTIONS.
7     - support selection of netinstall vs. local mirror in interactive menu
8   * Bugfixes:
9     - make sure to ignore /dev/md* devices if not using SW-RAID
10     - do not fail in chrootmirror() when using $ISO variable.
11     - change order of checkconfiguration() so we get the prompt/
12       display for checking configuration again.
13     - Drop 'do not prompt for partition dialog if swraid has been
14       configured already' which doesn't make any sense in most situations
15   * Minor changes:
16     - check for mounted target in mkfs() step already instead of mount_target()
17     - use '.. to the debootstrap command' in description of --debopt
18     - chroot-script: put installation of kernel before installing additional
19       packages so installation of kernel doesn't fail if the kernel directory
20       exists already
21   * Debian Package:
22     - bump Standard Version to 3.8.1 (no further changes).
23
24  -- Michael Prokop <mika@grml.org>  Fri, 08 May 2009 17:57:57 +0200
25
26 grml-debootstrap (0.26) unstable; urgency=low
27
28   * Do not use UUID on SW-RAID.
29   * Add /dev/md* to partition list. If /dev/md* is already
30     configured we don't want to re-run the SW-RAID setup
31     but instead just install on /dev/md*.
32
33  -- Michael Prokop <mika@grml.org>  Tue, 17 Mar 2009 10:47:53 +0100
34
35 grml-debootstrap (0.25) unstable; urgency=low
36
37   * Use configuration $RELEASE as well as default in interactive
38     setup script.
39   * Provide $MNTPOINT as environment variable for usage inside
40     /etc/debootstrap/scripts/.
41
42  -- Michael Prokop <mika@grml.org>  Sat, 07 Mar 2009 14:37:46 +0100
43
44 grml-debootstrap (0.24) unstable; urgency=low
45
46   * Update documentation.
47   * Use configuration of $MIRROR, $HOSTNAME as defaults in
48     interactive setup script.
49   * Add initial support for Debian/squeeze and drop sarge instead.
50   * Update VCS*-headers and long description of Debian package.
51   * Move asciidoc, docbook-xsl, xsltproc to Build-Depends-Indep.
52   * Drop $CHROOTMIRROR variable, instead use $MIRROR for debootstrap
53     as well as inside the chroot.
54   * Provide $MNTPOINT as environment variable for usage inside
55     /etc/debootstrap/scripts/.
56
57  -- Michael Prokop <mika@grml.org>  Sat, 07 Mar 2009 14:15:32 +0100
58
59 grml-debootstrap (0.23) unstable; urgency=low
60
61   The "hey, rocking - we get patches via git" release.
62
63   * Improve look'n'feel of partition error dialog.
64   * Improve documentation regarding installation of bootloader when
65     using directories as installation target. Thanks Tong Sun!
66     [Closes: issue539]
67   * Copy /etc/debootstrap/[s]bin as well to the chroot if they are
68     present. Suggestion by Tong Sun - thanks! [Closes: issue540]
69   * Apply several patches by Tong Sun (thanks!):
70     - allow symlinks when coping existing files to chroot.
71     - pre-seed packages using /etc/debootstrap/debconf-selections
72       [Closes: issue518]
73     - support DEBOOTSTRAP_OPT for passing extra parameters to the
74       debootstrap command
75     - support KEEP_SRC_LIST to allow user to provide their
76       own apt sources.list from /etc/debootstrap/etc/apt/sources.list
77     - provide cmdline processing in separate script
78     - added the '-d, --confdir=path' option
79     - added "--nodebootstrap": Skip debootstrap, only do configuration
80       to the target
81     - add -v, --verbose: Increase verbosity
82     - do not create stage file at finalize()
83   * Edit /etc/network/interfaces as well if the file exists already,
84     we definitely need at least a loopback interface.
85   * Adjust postfix configuration:
86     - modify hostname related options in /etc/postfix/main.cf
87     - listen on loopback interface by default (thanks for suggestion, gebi)
88   * Unify the --bootappend option, it's not --boot_append (thanks for
89     the hint, Tong Sun).
90   * Support execution of further scripts via options --scripts and
91     --chroot-scripts.
92   * Drop locales from RECONFIGURE list (thanks for hint, Tong Sun).
93     [Closes: issue560]
94
95  -- Michael Prokop <mika@grml.org>  Mon, 24 Nov 2008 23:29:30 +0100
96
97 grml-debootstrap (0.22) unstable; urgency=low
98
99   * Display meaningful information when no partitions could be found.
100
101  -- Michael Prokop <mika@grml.org>  Mon, 15 Sep 2008 19:46:20 +0200
102
103 grml-debootstrap (0.21) unstable; urgency=low
104
105   * Make sure it works on target directories also if they are
106     *not* mounted separately. Thanks for reporting, Tong.
107
108  -- Michael Prokop <mika@grml.org>  Tue, 02 Sep 2008 23:19:05 +0200
109
110 grml-debootstrap (0.20) unstable; urgency=low
111
112   * Use root=UUID=... by default if possible to avoid possible
113     race conditions with libata vs. pata.
114   * Fix setting hostname via interface.
115   * Provide interface in dialog for setting root password.
116
117  -- Michael Prokop <mika@grml.org>  Tue, 02 Sep 2008 14:02:43 +0200
118
119 grml-debootstrap (0.19) unstable; urgency=low
120
121   * Use dialog with --separate-output option to make sure mdadm
122     receives correct quoting for the RAID devices.
123
124  -- Michael Prokop <mika@grml.org>  Tue, 02 Sep 2008 13:36:12 +0200
125
126 grml-debootstrap (0.18) unstable; urgency=low
127
128   The "development sponsored by Sipwise GmbH" release.
129
130   * Provide interactive configuration dialog.
131   * Initial support for SW-RAID.
132   * Use stages based on target information, this gives us
133     the possibility to run multiple instance of grml-debootstrap.
134     [Closes: issue510]
135   * Use policy-rc.d inside chroot to avoid startup of daemons.
136     [Closes: issue509]
137   * Do not activate /sys by default anymore in /etc/fstab.
138   * Copy /etc/network/interfaces from running system to target
139     installation.
140   * Setting password via passwd does not work, use chpaswd instead.
141   * Remove stages after successful execution. [Closes: issue513]
142   * Make sure the configuration file inside the chroot provides
143     the same configuration as specified on the cmdline (thanks gebi
144     for reporting).
145   * Copy system's /etc/hosts to the target system.
146   * Move stages to /var/cache/grml-debootstrap (thanks for the idea,
147     gebi).
148   * Install devices using our own device tarball instead of running
149     MAKEDEV (which is just an ungly fork bomb).
150   * Install MTA postfix by default to avoid installation of unwanted
151     packages like citadel in lenny.
152   * Allow use of comments in file /etc/debootstrap/packages.
153   * Replace initrd-tools with initramfs-tools.
154   * Run aptitude with --without-recommends option.
155   * Run grub-install using --no-floppy, as requested by gebi.
156   * Support setting hostname via cmdline.
157   * Close issue in grml's BTS which showed up during development in hg:
158     Fix handling of config file inside chroot, thanks for spotting, gebi!
159     [Closes: issue512]
160   * Update debian/ to make lintian happy.
161
162  -- Michael Prokop <mika@grml.org>  Sat, 30 Aug 2008 02:01:14 +0200
163
164 grml-debootstrap (0.17) unstable; urgency=low
165
166   * Support "-r" option as well as "--release" as being documented.
167     Thanks for reporting, Jens Kubieziel.
168
169  -- Michael Prokop <mika@grml.org>  Wed, 26 Mar 2008 22:44:06 +0100
170
171 grml-debootstrap (0.16) unstable; urgency=low
172
173   * Drop the second passwd call.
174
175  -- Michael Prokop <mika@grml.org>  Wed, 19 Dec 2007 10:10:54 +0100
176
177 grml-debootstrap (0.15) unstable; urgency=low
178
179   * Make sure the passwd command succeeds.
180     Thanks, Wolfgang Karall! [Closes: issue363]
181
182  -- Michael Prokop <mika@grml.org>  Sun, 16 Dec 2007 16:30:37 +0100
183
184 grml-debootstrap (0.14) unstable; urgency=low
185
186   * Make sure variable ISO is unset variable if not used.
187     Thanks for the bugreport, Darsha! [Closes: issue352]
188
189  -- Michael Prokop <mika@grml.org>  Sun, 09 Dec 2007 20:16:15 +0100
190
191 grml-debootstrap (0.13) unstable; urgency=low
192
193   * Fix manpage handling of xsltproc.
194
195  -- Michael Prokop <mika@grml.org>  Thu, 06 Dec 2007 23:47:09 +0100
196
197 grml-debootstrap (0.12) unstable; urgency=low
198
199   * Fixed some typos in the manpage.
200     Thanks for the patch, Alexander 'Stone' Steinböck!
201
202  -- Michael Prokop <mika@grml.org>  Wed, 24 Oct 2007 10:16:03 +0200
203
204 grml-debootstrap (0.11) unstable; urgency=low
205
206   * Better inform user about already executed stages.
207     [Closes: issue299]
208
209  -- Michael Prokop <mika@grml.org>  Sat,  6 Oct 2007 18:03:16 +0200
210
211 grml-debootstrap (0.10) unstable; urgency=low
212
213   * Add console-common to /etc/debootstrap/packages. Thanks for
214     the feature request, Thorsten Strusch!
215   * Support option -i/--iso: now it's possible to install packages
216     from a normal Debian ISO. Thanks for the idea and the basic
217     instructions to Thorsten Strusch!
218     http://www.thorstenstrusch.de/software/debian-linux/
219
220  -- Michael Prokop <mika@grml.org>  Mon, 04 Jun 2007 10:13:32 +0200
221
222 grml-debootstrap (0.9) unstable; urgency=low
223
224   [ Alexander Wirt ]
225   * Add support for EXTRAPACKAGES that can be dropped in
226     /etc/debootstrap/extrapackages
227   * Add boot_append option to manpage
228   * Manpage reformatted
229
230   [ Michael Prokop ]
231   * Support grml-repository and installation of grml-kernel
232     via GRMLREPOS and GRMLPACKAGES.
233   * Use stage logic inside chroot-script as well.
234   * Activate zsh completion.
235   * Rewrote interfaces() code for handling of
236     /etc/network/interfaces. Thanks for the pointer, formorer.
237   * Make sure stopping a service inside chroot-script does not
238     fail chroot-script itself.
239
240  -- Michael Prokop <mika@grml.org>  Mon, 23 Apr 2007 00:23:19 +0200
241
242 grml-debootstrap (0.8) unstable; urgency=low
243
244   * Add BOOT_APPEND option for kernel appendline 
245
246  -- Alexander Wirt <formorer@grml.org>  Sat, 21 Apr 2007 11:19:06 +0200
247
248 grml-debootstrap (0.7) unstable; urgency=low
249
250   * Support setting some variables via cmdline.
251   * Support full automatic installation via debian2hd.
252   * Change logic of function execution and improved error handling
253     in some functions.
254   * Use aptitude instead of apt-get in chroot-script, but
255     only if it's available.
256   * Use DEBIAN_FRONTEND='noninteractive' so we avoid unnecessary
257     questions when installing. (Thanks, formorer!)
258   * Added additional check to grub code for running sed on
259     /boot/grub/menu.lst.
260   * Updated TODO file.
261   * Use asciidoc for manpage generation.
262   * Added basic zsh-completion (thanks, ft!), but do not install it yet.
263     We have to adjust $fpath in grml-etc-core first.
264
265  -- Michael Prokop <mika@grml.org>  Fri, 13 Apr 2007 17:57:29 +0200
266
267 grml-debootstrap (0.6) unstable; urgency=low
268
269   * Support Debian release with codename 'lenny'. Depend on
270     debootstrap/cdebootstrap versions supporting lenny therefore.
271   * Split all the code into separate functions.
272   * Export LANG=C and LC_ALL=C as we don't have the locales inside
273     the chroot when running grml-debootstrap. (Just a cosmetic
274     change as there aren't any errors but warning messages from
275     dpkg.)
276   * Always assume architecture of the running system (overwriting
277     via $ARCH is still supported of course).
278   * Write variables from grml-debootstrap to /etc/debootstrap/variables
279     and provide it to chroot-script.
280   * Support stages. [Closes: issue151]
281
282  -- Michael Prokop <mika@grml.org>  Mon,  9 Apr 2007 14:35:21 +0200
283
284 grml-debootstrap (0.5) unstable; urgency=low
285
286   * Changed Architecture from any to all.
287
288  -- Michael Prokop <mika@grml.org>  Sat, 24 Mar 2007 16:58:53 +0100
289
290 grml-debootstrap (0.4) unstable; urgency=low
291
292   * Support installation into directory.
293
294  -- Michael Prokop <mika@grml.org>  Fri, 17 Nov 2006 23:00:38 +0100
295
296 grml-debootstrap (0.3) unstable; urgency=low
297
298   * Initial support for $ARCH.
299   * Added function for clean exit (using trap).
300
301  -- Michael Prokop <mika@grml.org>  Fri, 10 Nov 2006 00:51:09 +0100
302
303 grml-debootstrap (0.2) unstable; urgency=low
304
305   * Support Sarge and Sid as "$RELEASE"s as well.
306   * Added 'debootstrap | cdebootstrap' and grml-etc-core to
307     depends.
308   * Added support for:
309     - cdebootstrap [broken for sarge as $RELEASE, see #390510]
310     - setting hostname via /etc/hostname
311     - /etc/kernel-img.conf
312     - support setting locales through /etc/debootstrap/locale.gen
313   * Added ssh, mdadm and lvm2 to default package list.
314   * Rewrote kernel package version handling (removed from package
315     list to be able to support sarge as well).
316
317  -- Michael Prokop <mika@grml.org>  Fri,  3 Nov 2006 19:05:19 +0100
318
319 grml-debootstrap (0.1) unstable; urgency=low
320
321   * Initial release.
322
323  -- Michael Prokop <mika@grml.org>  Fri,  3 Nov 2006 01:10:52 +0100
324