[node-patches] Change in ovirt-node[master]: fix HostVG installation across multiple devices
jboggs at redhat.com
jboggs at redhat.com
Thu Nov 29 15:15:19 UTC 2012
Joey Boggs has uploaded a new change for review.
Change subject: fix HostVG installation across multiple devices
......................................................................
fix HostVG installation across multiple devices
rhbz#881570
Change-Id: Iffecccf568e4da55b560d078e107c5c225a2448b
Signed-off-by: Joey Boggs <jboggs at redhat.com>
---
M scripts/ovirt-config-installer.py
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/75/9575/1
diff --git a/scripts/ovirt-config-installer.py b/scripts/ovirt-config-installer.py
index 8f4a8ca..228429c 100644
--- a/scripts/ovirt-config-installer.py
+++ b/scripts/ovirt-config-installer.py
@@ -1037,7 +1037,9 @@
ButtonChoiceWindow(self.screen, "HostVG Storage Selection", "You must enter a valid device", buttons = ['Ok'])
else:
if self.failed_block_dev == 0:
- self.hostvg_init = translate_multipath_device(self.hostvg_device.value())
+ self.hostvg_init = ""
+ for device in self.hostvg_device.value().split(","):
+ self.hostvg_init += translate_multipath_device(device) + ","
hostvg_list = ""
for dev in self.hostvg_init.split(","):
if not tui_check_fakeraid(dev, self.screen):
--
To view, visit http://gerrit.ovirt.org/9575
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: Iffecccf568e4da55b560d078e107c5c225a2448b
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-node
Gerrit-Branch: master
Gerrit-Owner: Joey Boggs <jboggs at redhat.com>
More information about the node-patches
mailing list