blob: 9dbe58ba28b36e4b0762a24f04330c41de1961f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
changeset: 161:00984cdd0c55
user: Mark McLoughlin <markmc@redhat.com>
date: Mon Apr 30 11:43:24 2007 -0400
files: virt-install
description:
[et-mgmt-tools] [patch 1/4] Typo in kvm support
Patch from David Lutterkort
Fixes a minor type in kvm support where we reference a
non-existent module.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
diff -r 71f2046b9805 -r 00984cdd0c55 virt-install
--- a/virt-install Wed Apr 25 15:56:03 2007 -0400
+++ b/virt-install Mon Apr 30 11:43:24 2007 -0400
@@ -519,9 +519,9 @@ def main():
hvm = True
type = "qemu"
if options.accelerate:
- if util.is_kvm_capable():
+ if virtinst.util.is_kvm_capable():
type = "kvm"
- elif util.is_kqemu_capable():
+ elif virtinst.util.is_kqemu_capable():
type = "kqemu"
if hvm:
|