From 43137a6b7f01bf4c6a9ed4cf82b5b3d6ff966738 Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Tue, 4 Jul 2006 18:51:59 +0000 Subject: [PATCH] If VG is already consistent with --removemissing, return success not failure. --- tools/vgreduce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vgreduce.c b/tools/vgreduce.c index 49bb656c2..fe8eb4c4f 100644 --- a/tools/vgreduce.c +++ b/tools/vgreduce.c @@ -476,7 +476,7 @@ int vgreduce(struct cmd_context *cmd, int argc, char **argv) log_error("Volume group \"%s\" is already consistent", vg_name); unlock_vg(cmd, vg_name); - return ECMD_FAILED; + return ECMD_PROCESSED; } init_partial(1);