From d8284beb23f7a81b27e5acb0ecb90d76809df736 Mon Sep 17 00:00:00 2001 From: David Teigland Date: Tue, 27 Nov 2018 13:41:33 -0600 Subject: [PATCH] lvmlockctl: wait by default when stopping lvmlockctl --stop-lockspaces was by default not waiting for all the lockspaces to be gone. --- daemons/lvmlockd/lvmlockctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/lvmlockd/lvmlockctl.c b/daemons/lvmlockd/lvmlockctl.c index 2442b465c..0dfc3e662 100644 --- a/daemons/lvmlockd/lvmlockctl.c +++ b/daemons/lvmlockd/lvmlockctl.c @@ -24,7 +24,7 @@ static int quit = 0; static int info = 0; static int dump = 0; -static int wait_opt = 0; +static int wait_opt = 1; static int force_opt = 0; static int kill_vg = 0; static int drop_vg = 0;