diff options
| author | Chuck Short <zulcss@ubuntu.com> | 2011-07-07 18:22:20 +0000 |
|---|---|---|
| committer | Tarmac <> | 2011-07-07 18:22:20 +0000 |
| commit | 8af474f32f8e53142cc5f10e567a03b274693d44 (patch) | |
| tree | cc39223a3360e709bae01c9a1aa5382b1296ed67 | |
| parent | cd903f6c813010c8f09adc0cb63d787108a52b8b (diff) | |
| parent | f9b6c84842cbb494d09de9debaee2ee37d49815c (diff) | |
Fixes Bug #805083: "libvirtError: internal error cannot determine default video type" when using UML
| -rw-r--r-- | nova/virt/libvirt/connection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/libvirt/connection.py b/nova/virt/libvirt/connection.py index 0c6eaab84..233d14203 100644 --- a/nova/virt/libvirt/connection.py +++ b/nova/virt/libvirt/connection.py @@ -1015,7 +1015,7 @@ class LibvirtConnection(driver.ComputeDriver): 'volumes': block_device_mapping} if FLAGS.vnc_enabled: - if FLAGS.libvirt_type != 'lxc': + if FLAGS.libvirt_type != 'lxc' or FLAGS.libvirt_type != 'uml': xml_info['vncserver_host'] = FLAGS.vncserver_host xml_info['vnc_keymap'] = FLAGS.vnc_keymap if not rescue: |
