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