From 3d84267130db79404e0396b5d0efce136b682526 Mon Sep 17 00:00:00 2001 From: Cristian Ciupitu Date: Sat, 24 Oct 2009 17:04:40 +0300 Subject: koan: use /var/lib/libvirt/images for qemu (trac #497) - by default virt-manager creates qemu images in /var/lib/libvirtd/images. For consistency koan should create them in the same directory, instead of /opt/qemu. --- koan/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koan/app.py b/koan/app.py index 6a3fae87..861dd922 100755 --- a/koan/app.py +++ b/koan/app.py @@ -1381,7 +1381,7 @@ class Koan: if self.virt_type in [ "xenpv", "xenfv" ]: prefix = "/var/lib/xen/images/" elif self.virt_type == "qemu": - prefix = "/opt/qemu/" + prefix = "/var/lib/libvirt/images/" elif self.virt_type == "vmwarew": prefix = "/var/lib/vmware/%s/" % name else: -- cgit