diff --git a/vrtManager/hostdetails.py b/vrtManager/hostdetails.py index 0c12e09..c2ced24 100644 --- a/vrtManager/hostdetails.py +++ b/vrtManager/hostdetails.py @@ -70,3 +70,11 @@ class wvmHostDetails(wvmConnect): def hypervisor_type(self): """Return hypervisor type""" return get_xml_path(self.get_cap_xml(), "/capabilities/guest/arch/domain/@type") + + def hypervisor_version(self): + """Return hypervisor version""" + return self.wvm.getVersion() + + def lib_version(self): + """Return libvirt library version""" + return self.wvm.getLibVersion()