Hi,

I found the "No key" exception occurred in overt-node's install progress.
For the detail, please see the attached picture.

This patch fixs the problem.

I am a newbie for ovirt-node and I apologize if I am missing something very 
obvious.
Any advice is welcomed.


diff --git a/src/ovirtnode/install.py b/src/ovirtnode/install.py
index 7b95b04..eae26ba 100755
--- a/src/ovirtnode/install.py
+++ b/src/ovirtnode/install.py
@@ -475,7 +475,8 @@ initrd /initrd0.img
         else:
             self.root_param = "root=live:LABEL=Root"
             self.bootparams = "ro rootfstype=auto rootflags=ro "
-        self.bootparams += OVIRT_VARS["OVIRT_BOOTPARAMS"].replace(
+
+        self.bootparams += OVIRT_VARS.get("OVIRT_BOOTPARAMS", "").replace(
                                                             "console=tty0", "")
         if " " in self.disk or os.path.exists("/dev/cciss"):
             # workaround for grub setup failing with spaces in dev.name:

bohai(ricky)
[email protected]


<<attachment: percent80.png>>

_______________________________________________
node-devel mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/node-devel

Reply via email to