Properly update iv_name of disks while changing templates
authorMichele Tartara <mtartara@google.com>
Wed, 10 Apr 2013 14:36:44 +0000 (14:36 +0000)
committerMichele Tartara <mtartara@google.com>
Thu, 11 Apr 2013 11:27:29 +0000 (13:27 +0200)
Trasforming the disk of an instance from DRBD to plain did not properly
update the iv_name of disks, leaving it to None.

This commit modifies _ConvertDrbdToPlain to properly set the iv_name
variables.

An analogous fix is not required in the opposite function,
_ConvertPlainToDrbd, because it uses _GenerateDiskTemplate, that already
takes care of doing that.

Fixes Issue 403.

Signed-off-by: Michele Tartara <mtartara@google.com>
Reviewed-by: Guido Trotter <ultrotter@google.com>

lib/cmdlib.py

index 023084f..5ad1338 100644 (file)
@@ -14043,6 +14043,7 @@ class LUInstanceSetParams(LogicalUnit):
     # update instance structure
     instance.disks = new_disks
     instance.disk_template = constants.DT_PLAIN
+    _UpdateIvNames(0, instance.disks)
     self.cfg.Update(instance, feedback_fn)
 
     # Release locks in case removing disks takes a while