Bump version and update NEWS for 0.10 release
[ext/instance-debootstrap.git] / NEWS
1 Version 0.10
2 ------------
3
4 This add supports for ext4 file-systems and changes the default
5 distribution from Lenny to Squeeze.
6
7 Additionally, new hooks were added:
8
9 - setting the password for the root user
10 - setting the timezone
11 - setting SSH keys for a given user
12
13 Version 0.9
14 -----------
15
16 Changed the default CUSTOMIZE_DIR (under $sysconfdir, usually /etc) from
17 ganeti/instance-debootstrap.d to ganeti/instance-debootstrap/hooks, to
18 match better with the directory used for the variants file. Now
19 customization of the instance-debootstrap is done either in the defaults
20 file or under ganeti/instance-debootstrap.
21
22 Fix serial console access for kvm instances (bind to ttyS0 rather than
23 console). Please note that with this change if you toggle the serial
24 console hypervisor parameter in Ganeti, but don't create the getty entry
25 in /etc/inittab or /etc/event.d/ you won't have serial access. Before it
26 used to work, but the serial console was slightly broken (no ctrl+c for
27 example).
28
29 Also start shipping the examples in the tar archive, to ease packaging.
30
31 Version 0.8
32 -----------
33
34 Added support for OS API 15 (with OS variants) that is supported by
35 Ganeti 2.1.
36
37 blktype is now supported as an alternative to vol_id; this is needed for
38 newer Debian-based operating systems.
39
40 Added an example grub script, that can be used for automatically
41 installing grub inside new instances.
42
43 Version 0.7
44 -----------
45
46 Fix Ganeti 1.2 compatibility (0.6 was broken) and force the scripts to be
47 executed under /bin/bash (rather than /bin/sh). This fixes compatibility with
48 distributions where /bin/sh is not bash.
49
50 Support 'msdos' partition style, in which the instance disk gets a partition
51 table, and one big partition, rather than creating the filesytem directly on
52 the block device. This requires kpartx to be installed, and is the default when
53 installing under Ganeti 2.0.
54
55 Added the possibility to customize the installation without having to patch the
56 os directly, by executing the scripts in CUSTOMIZE_DIR and giving them a chance
57 to change the instance filesystem. As an example a script that sets the first
58 nic to request a dhcp address is provided.
59
60 Version 0.6
61 -----------
62
63 Support for Ganeti 2.0 (os api 10)
64
65 The instance's fstab is now generated with volumes' UUIDs rather than paths.
66 This makes it more resilient to changes and use under different
67 hypervisors/drivers.
68
69 Init is configured to listen on /dev/console rather than /dev/tty1
70
71 Version 0.5
72 -----------
73
74 Most of the settings of the script have been moved to a configuration
75 file.  Depending on the ./configure options, the location of this file
76 might be /etc/default/ganeti-instance-debootstrap or
77 /usr/local/etc/default/ganeti-instance-debootstrap.
78
79 The cache generation and cleaning variables can be modified as follows:
80
81 - to enable generating the cache, modify the config file and set
82   GENERATE_CACHE to "yes"
83 - to disable cleaning the cache, set CLEAN_CACHE to ""; or
84   alternatively, you can customize with this variable the number of days
85   after which to clear the cache
86
87 Note that the cache file is no longer stored in the same directory as
88 the OS definition files, but (again depending on ./configure options)
89 usually under /var/cache/ganeti-instance-debootstrap.
90
91 There are many other customuizable settings added in this version, for
92 example the actual OS to be installed (no longer always installing
93 Debian Etch), whether to use a proxy or not, etc. See the README and the
94 'defaults' files.
95
96 Version 0.4
97 -----------
98
99 This version fixes the problem of interface renaming at instance import
100 time, by removing the saved udev hotplug rules (if any).
101
102 Version 0.3
103 -----------
104
105 The OS will cache the image of the first instance it installs using the
106 name "cache-$arch.tar" (where $arch is what dpkg --print-architecture
107 returns) on a node-by-node basis. This cache will be then used on the
108 future installs, speeding them greatly (even with a fast mirror). Feel
109 free to remove the cache at any time, or to copy it to all nodes. The
110 cache will be kept for two weeks, after which the first install will
111 recreate the cache (in order not to use old packages). If you don't care
112 about package age, remove the user write permission (chmod u-w) from the
113 cache and ganeti will continue to use the same file without refreshing
114 it.
115
116 If you don't have enough space and don't want cache creation, just touch
117 the file 'no_cache' - this will prevent the creation, but the script
118 will continue to use a cache if it exists (but it will remove an
119 existing one after two weeks).
120
121 Also note that if the image file is there, the script does not need
122 network access at all.
123
124 .. vim: set textwidth=72 :
125 .. Local Variables:
126 .. mode: rst
127 .. fill-column: 72
128 .. End: