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