[libvirt] [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 15f3025..828d585 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 -- 1.9.0

On 06/10/2014 12:26 PM, Roman Bogorodskiy wrote:
Add 'Bhyve' in hypervisor list reported by 'virsh -V' if it's compiled it. --- tools/virsh.c | 3 +++ 1 file changed, 3 insertions(+)
ACK
diff --git a/tools/virsh.c b/tools/virsh.c index 15f3025..828d585 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
-- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org
participants (2)
-
Eric Blake
-
Roman Bogorodskiy