~ubuntu-branches/ubuntu/quantal/virtinst/quantal-proposed

« back to all changes in this revision

Viewing changes to virtinst/Guest.py

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-24 15:51:30 UTC
  • Revision ID: package-import@ubuntu.com-20120224155130-wqwm16u5chv3anxe
Tags: 0.600.1-1ubuntu2
debian/patches/0004-Fix-path-to-qemu-dm.patch: fix the path to the
qemu-dm binary. (LP: #936048)

Show diffs side-by-side

added added

removed removed

Lines of Context:
886
886
        if (not self.emulator and
887
887
            self.installer.is_hvm() and
888
888
            self.type == "xen"):
889
 
            if self._get_caps().host.arch in ("x86_64"):
890
 
                emulator = "/usr/lib64/xen/bin/qemu-dm"
891
 
            else:
892
 
                emulator = "/usr/lib/xen/bin/qemu-dm"
 
889
            emulator = "/usr/lib/xen-default/bin/qemu-dm"
893
890
 
894
891
        emu_xml = ""
895
892
        if emulator is not None: