[node-patches] Change in ovirt-node[master]: Pick up all iSCSI installs
rbarry at redhat.com
rbarry at redhat.com
Fri Nov 7 03:37:05 UTC 2014
Ryan Barry has uploaded a new change for review.
Change subject: Pick up all iSCSI installs
......................................................................
Pick up all iSCSI installs
/etc/defaults/ovirt is not always "1" for OVIRT_ISCSI_INSTALL.
Also pick up "Y"
Change-Id: I60e71e69dca7ec3d5e6df4d01f3b2d36ebe6fd5a
Signed-off-by: Ryan Barry <rbarry at redhat.com>
---
M src/ovirt/node/config/defaults.py
1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/10/34910/1
diff --git a/src/ovirt/node/config/defaults.py b/src/ovirt/node/config/defaults.py
index 64d7e6b..ed81de6 100644
--- a/src/ovirt/node/config/defaults.py
+++ b/src/ovirt/node/config/defaults.py
@@ -1671,7 +1671,8 @@
"install_root": cfg["install_root"] == "y",
"root_install": cfg["root_install"] == "y",
"install": cfg["install"] == "1",
- "iscsi_install": cfg["iscsi_install"] == "1",
+ "iscsi_install": cfg["iscsi_install"] == "1" or
+ cfg["iscsi_install"] == "Y",
"upgrade": cfg["upgrade"] == "1"})
return cfg
--
To view, visit http://gerrit.ovirt.org/34910
To unsubscribe, visit http://gerrit.ovirt.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I60e71e69dca7ec3d5e6df4d01f3b2d36ebe6fd5a
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-node
Gerrit-Branch: master
Gerrit-Owner: Ryan Barry <rbarry at redhat.com>
More information about the node-patches
mailing list