From aec0c6d3d50f2ac107f755f15883a9cd6d9bf56d Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Tue, 10 Jun 2014 22:25:10 +0400 Subject: [PATCH] virsh: include bhyve in virsh -V output Add 'Bhyve' in hypervisor list reported by 'virsh -V' if it's compiled it. --- tools/virsh.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/virsh.c b/tools/virsh.c index 15f30252d1..828d585a59 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -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 -- 2.39.5