From 6221b8944e04c5cb02d3882833c11ce2319d88f7 Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Sun, 3 Jan 2016 05:25:35 +0300 Subject: [PATCH] virsh: display if ZFS storage backend is enabled Make 'virsh -V' list ZFS storage backend if it's enabled. --- tools/virsh.c | 3 +++ 1 file changed, 3 insertions(+) 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");