1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-10-31 19:44:16 +00:00

Fixed Checking KVM

This commit is contained in:
Anatoliy Guskov 2015-11-27 09:38:04 +02:00 committed by Jan Krcmar
parent cd787c3eaf
commit 35369edf28

View file

@ -1,12 +1,11 @@
import re
import random
import libxml2
import libvirt
def is_kvm_available(xml):
capabilites = re.search('kvm', xml)
if capabilites:
kvm_domains = get_xml_path(xml, "//domain/@type='kvm'")
if kvm_domains > 0:
return True
else:
return False