From 9e9e508993a36e0d8929cd8ab3b2e4fe5315b108 Mon Sep 17 00:00:00 2001 From: Maxim Nestratov Date: Mon, 28 Mar 2016 16:20:40 +0300 Subject: [PATCH] virsh: report when vz driver is compiled Signed-off-by: Maxim Nestratov --- tools/virsh.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/virsh.c b/tools/virsh.c index fe338397ce..5a61189bc2 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -580,6 +580,9 @@ virshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED) #ifdef WITH_OPENVZ vshPrint(ctl, " OpenVZ"); #endif +#ifdef WITH_VZ + vshPrint(ctl, " Virtuozzo"); +#endif #ifdef WITH_VMWARE vshPrint(ctl, " VMware"); #endif