]> xenbits.xensource.com Git - libvirt.git/commitdiff
virsh: include bhyve in virsh -V output
authorRoman Bogorodskiy <bogorodskiy@gmail.com>
Tue, 10 Jun 2014 18:25:10 +0000 (22:25 +0400)
committerRoman Bogorodskiy <bogorodskiy@gmail.com>
Wed, 11 Jun 2014 18:16:09 +0000 (22:16 +0400)
Add 'Bhyve' in hypervisor list reported by 'virsh -V'
if it's compiled it.

tools/virsh.c

index 15f30252d1fb554ff47b9be9b0e54a95ccafb06c..828d585a59599dc5e5ad33dab996193f0a42003a 100644 (file)
@@ -3233,6 +3233,9 @@ vshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED)
 #ifdef WITH_XENAPI
     vshPrint(ctl, " XenAPI");
 #endif
+#ifdef WITH_BHYVE
+    vshPrint(ctl, " Bhyve");
+#endif
 #ifdef WITH_TEST
     vshPrint(ctl, " Test");
 #endif