[Libguestfs] [PATCH 1/2] daemon: lvm: use 'yes' as boolean for lvm2

Pino Toscano ptoscano at redhat.com
Fri May 12 15:15:45 UTC 2017


It looks like older versions of lvm2 (recent enough to have selectors)
do not recognize '1' (and '0') as boolean values.  Switch to 'yes',
which seems to be supported.

Updates commit 7367945647e774aec4b93c3bf13181212d3c6430.
---
 daemon/lvm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/daemon/lvm.c b/daemon/lvm.c
index a270b13..c186a5a 100644
--- a/daemon/lvm.c
+++ b/daemon/lvm.c
@@ -264,7 +264,7 @@ do_lvs (void)
     r = command (&out, &err,
                  str_lvm, "lvs",
                  "-o", "vg_name,lv_name",
-                 "-S", "lv_role=public && lv_skip_activation!=1",
+                 "-S", "lv_role=public && lv_skip_activation!=yes",
                  "--noheadings",
                  "--separator", "/", NULL);
     if (r == -1) {
-- 
2.9.3




More information about the Libguestfs mailing list