To avoid bashisms, convert to /bin/bash! :)
[ext/instance-debootstrap.git] / NEWS
1 Version 0.6
2 -----------
3
4 Support for Ganeti 2.0 (os api 10)
5
6 The instance's fstab is now generated with volumes' UUIDs rather than paths.
7 This makes it more resilient to changes and use under different
8 hypervisors/drivers.
9
10 Init is configured to listen on /dev/console rather than /dev/tty1
11
12 Version 0.5
13 -----------
14
15 Most of the settings of the script have been moved to a configuration
16 file.  Depending on the ./configure options, the location of this file
17 might be /etc/default/ganeti-instance-debootstrap or
18 /usr/local/etc/default/ganeti-instance-debootstrap.
19
20 The cache generation and cleaning variables can be modified as follows:
21
22 - to enable generating the cache, modify the config file and set
23   GENERATE_CACHE to "yes"
24 - to disable cleaning the cache, set CLEAN_CACHE to ""; or
25   alternatively, you can customize with this variable the number of days
26   after which to clear the cache
27
28 Note that the cache file is no longer stored in the same directory as
29 the OS definition files, but (again depending on ./configure options)
30 usually under /var/cache/ganeti-instance-debootstrap.
31
32 There are many other customuizable settings added in this version, for
33 example the actual OS to be installed (no longer always installing
34 Debian Etch), whether to use a proxy or not, etc. See the README and the
35 'defaults' files.
36
37 Version 0.4
38 -----------
39
40 This version fixes the problem of interface renaming at instance import
41 time, by removing the saved udev hotplug rules (if any).
42
43 Version 0.3
44 -----------
45
46 The OS will cache the image of the first instance it installs using the
47 name "cache-$arch.tar" (where $arch is what dpkg --print-architecture
48 returns) on a node-by-node basis. This cache will be then used on the
49 future installs, speeding them greatly (even with a fast mirror). Feel
50 free to remove the cache at any time, or to copy it to all nodes. The
51 cache will be kept for two weeks, after which the first install will
52 recreate the cache (in order not to use old packages). If you don't care
53 about package age, remove the user write permission (chmod u-w) from the
54 cache and ganeti will continue to use the same file without refreshing
55 it.
56
57 If you don't have enough space and don't want cache creation, just touch
58 the file 'no_cache' - this will prevent the creation, but the script
59 will continue to use a cache if it exists (but it will remove an
60 existing one after two weeks).
61
62 Also note that if the image file is there, the script does not need
63 network access at all.