summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Teigland <teigland@redhat.com>2015-05-11 09:28:47 -0500
committerDavid Teigland <teigland@redhat.com>2015-05-11 09:28:47 -0500
commitd748b3455d25192d68e166d89d1c6f67ac226d44 (patch)
tree7849107ce65896f231e64ece952bb9efd3802d5e
parent3eb2d4d2ce3c660fb5bd99c2093a00cb8f2fa4d5 (diff)
downloadlvm2-d748b3455d25192d68e166d89d1c6f67ac226d44.tar.gz
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.
-rw-r--r--tools/vgimport.c2
1 files changed, 1 insertions, 1 deletions
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;
}