Found another bug in kvm-ifup.in. Patch below:
=======================
--- kvm-ifup.in 2011-03-01 16:56:05.631729790 +0100
+++ tools/kvm-ifup.in 2011-03-01 16:57:52.468472144 +0100
@@ -34,7 +34,7 @@
ip link set $INTERFACE up
-if [ "$MODE" == "bridged" ]; then
+if [ "$MODE" = "bridged" ]; then
# Connect the interface to the bridge
brctl addif $BRIDGE $INTERFACE
else
=======================
On 1 mrt, 09:58, Iustin Pop <[email protected]> wrote:
> Hi all,
>
> We have found a critical bug with the rc2 (and earlier 2.4) release,
> that manifests if the new cluster parameter prealloc_wipe_disks is
> enabled. Upgrade or deactivating this parameter is strongly recommended.
>
> From the NEWS file:
>
> A critical fix for the ``prealloc_wipe_disks`` feature: it is possible
> that this feature wiped the disks of the wrong instance, leading to loss
> of data.
>
> Other changes:
>
> - fixed title of query field containing instance name
> - expanded the glossary in the documentation
> - fixed one unittest (internal issue)
>
> Download fromhttp://ganeti.googlecode.com/files/ganeti-2.4.0~rc3.tar.gz
>
> regards,
> iustin