From: Roman Bogorodskiy Date: Sun, 3 Jan 2016 02:25:35 +0000 (+0300) Subject: virsh: display if ZFS storage backend is enabled X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6221b8944e04c5cb02d3882833c11ce2319d88f7;p=libvirt.git virsh: display if ZFS storage backend is enabled Make 'virsh -V' list ZFS storage backend if it's enabled. --- diff --git a/tools/virsh.c b/tools/virsh.c index 1a9a713634..b96dbda59c 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -631,6 +631,9 @@ virshShowVersion(vshControl *ctl ATTRIBUTE_UNUSED) #endif #ifdef WITH_STORAGE_GLUSTER vshPrint(ctl, " Gluster"); +#endif +#ifdef WITH_STORAGE_ZFS + vshPrint(ctl, " ZFS"); #endif vshPrint(ctl, "\n");