From d748b3455d25192d68e166d89d1c6f67ac226d44 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Mon, 11 May 2015 09:28:47 -0500 Subject: [PATCH] vgimport: fall back when lvmetad is not running If lvmetad is configured, but not running, vgimport would not fall back and run without lvmetad, but would report an error about requiring lvmetad. --- tools/vgimport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vgimport.c b/tools/vgimport.c index b416e21ff..b64a7a38f 100644 --- a/tools/vgimport.c +++ b/tools/vgimport.c @@ -91,7 +91,7 @@ int vgimport(struct cmd_context *cmd, int argc, char **argv) * We need to reread it to see that it's been exported before we can * import it. */ - if (lvmetad_used() && !lvmetad_pvscan_all_devs(cmd, NULL)) { + if (lvmetad_active() && !lvmetad_pvscan_all_devs(cmd, NULL)) { log_error("Failed to scan devices."); return ECMD_FAILED; }