Change default Debian version to Wheezy
[ext/instance-debootstrap.git] / NEWS
1 Version 0.13
2 ------------
3
4 The Debian version installed by default is now Wheezy.
5
6 Improve documentation with regard to instance variants.
7
8
9 Version 0.12
10 ------------
11
12 A few small bugfixes:
13
14 - the defaults file is now installed automatically; even though all
15   settings are commented out, this allows for easier configuration
16 - require and check for a minimum device size; this makes error messages
17   much clearer, compared to tar's out of disk space errors (fixes issue
18   164)
19 - it is now possible to override the "components" argument to
20   debootstrap, to be able to install more packages (e.g. from contrib,
21   or from universe) (fixes issue 254)
22 - all existing hooks are now distributed in the archive and also
23   installed via `make install' (fixes issue 283)
24 - the console activation for xen-pvm hypervisor has been corrected;
25   before it was working only for kvm (fixes issue 284)
26
27
28 Version 0.11
29 ------------
30
31 The partition alignment offset is now configurable (using the
32 PARTITION_ALIGNMENT configuration setting, in sectors) and the
33 distribution names and packages in the defaults file have been updated.
34
35 Furthermore, the grub example hook has been improved a bit:
36
37 - automatically uses the defined proxy, so that package installation
38   uses the same method as the main install
39 - debconf frontend set to non-interactive, to prevent an debconf
40   question loop
41
42 However, there still seem to be issues related to this hook (recent grub
43 versions fail to run correctly "grub-install" or "update-grub" and
44 complain about device mappings); help is welcome.
45
46 Version 0.10
47 ------------
48
49 This add supports for ext4 file-systems and changes the default
50 distribution from Lenny to Squeeze.
51
52 Additionally, new hooks were added:
53
54 - setting the password for the root user
55 - setting the timezone
56 - setting SSH keys for a given user
57
58 Version 0.9
59 -----------
60
61 Changed the default CUSTOMIZE_DIR (under $sysconfdir, usually /etc) from
62 ganeti/instance-debootstrap.d to ganeti/instance-debootstrap/hooks, to
63 match better with the directory used for the variants file. Now
64 customization of the instance-debootstrap is done either in the defaults
65 file or under ganeti/instance-debootstrap.
66
67 Fix serial console access for kvm instances (bind to ttyS0 rather than
68 console). Please note that with this change if you toggle the serial
69 console hypervisor parameter in Ganeti, but don't create the getty entry
70 in /etc/inittab or /etc/event.d/ you won't have serial access. Before it
71 used to work, but the serial console was slightly broken (no ctrl+c for
72 example).
73
74 Also start shipping the examples in the tar archive, to ease packaging.
75
76 Version 0.8
77 -----------
78
79 Added support for OS API 15 (with OS variants) that is supported by
80 Ganeti 2.1.
81
82 blktype is now supported as an alternative to vol_id; this is needed for
83 newer Debian-based operating systems.
84
85 Added an example grub script, that can be used for automatically
86 installing grub inside new instances.
87
88 Version 0.7
89 -----------
90
91 Fix Ganeti 1.2 compatibility (0.6 was broken) and force the scripts to be
92 executed under /bin/bash (rather than /bin/sh). This fixes compatibility with
93 distributions where /bin/sh is not bash.
94
95 Support 'msdos' partition style, in which the instance disk gets a partition
96 table, and one big partition, rather than creating the filesytem directly on
97 the block device. This requires kpartx to be installed, and is the default when
98 installing under Ganeti 2.0.
99
100 Added the possibility to customize the installation without having to patch the
101 os directly, by executing the scripts in CUSTOMIZE_DIR and giving them a chance
102 to change the instance filesystem. As an example a script that sets the first
103 nic to request a dhcp address is provided.
104
105 Version 0.6
106 -----------
107
108 Support for Ganeti 2.0 (os api 10)
109
110 The instance's fstab is now generated with volumes' UUIDs rather than paths.
111 This makes it more resilient to changes and use under different
112 hypervisors/drivers.
113
114 Init is configured to listen on /dev/console rather than /dev/tty1
115
116 Version 0.5
117 -----------
118
119 Most of the settings of the script have been moved to a configuration
120 file.  Depending on the ./configure options, the location of this file
121 might be /etc/default/ganeti-instance-debootstrap or
122 /usr/local/etc/default/ganeti-instance-debootstrap.
123
124 The cache generation and cleaning variables can be modified as follows:
125
126 - to enable generating the cache, modify the config file and set
127   GENERATE_CACHE to "yes"
128 - to disable cleaning the cache, set CLEAN_CACHE to ""; or
129   alternatively, you can customize with this variable the number of days
130   after which to clear the cache
131
132 Note that the cache file is no longer stored in the same directory as
133 the OS definition files, but (again depending on ./configure options)
134 usually under /var/cache/ganeti-instance-debootstrap.
135
136 There are many other customizable settings added in this version, for
137 example the actual OS to be installed (no longer always installing
138 Debian Etch), whether to use a proxy or not, etc. See the README and the
139 'defaults' files.
140
141 Version 0.4
142 -----------
143
144 This version fixes the problem of interface renaming at instance import
145 time, by removing the saved udev hotplug rules (if any).
146
147 Version 0.3
148 -----------
149
150 The OS will cache the image of the first instance it installs using the
151 name "cache-$arch.tar" (where $arch is what dpkg --print-architecture
152 returns) on a node-by-node basis. This cache will be then used on the
153 future installs, speeding them greatly (even with a fast mirror). Feel
154 free to remove the cache at any time, or to copy it to all nodes. The
155 cache will be kept for two weeks, after which the first install will
156 recreate the cache (in order not to use old packages). If you don't care
157 about package age, remove the user write permission (chmod u-w) from the
158 cache and ganeti will continue to use the same file without refreshing
159 it.
160
161 If you don't have enough space and don't want cache creation, just touch
162 the file 'no_cache' - this will prevent the creation, but the script
163 will continue to use a cache if it exists (but it will remove an
164 existing one after two weeks).
165
166 Also note that if the image file is there, the script does not need
167 network access at all.
168
169 .. vim: set textwidth=72 :
170 .. Local Variables:
171 .. mode: rst
172 .. fill-column: 72
173 .. End: