diff --git a/WHATS_NEW b/WHATS_NEW index fad66bfd0..bb5b4c30f 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.107 - ================================== + Catch CTRL-c during pvremove prompts. Show correct availability status for snapshot origin in lvscan. Move segment thin pool/volume info into segment display 'lvdisplay --maps'. Display thin pool usage even when just thin volume is available. diff --git a/tools/pvremove.c b/tools/pvremove.c index 7048b972f..dfd600741 100644 --- a/tools/pvremove.c +++ b/tools/pvremove.c @@ -37,6 +37,8 @@ int pvremove(struct cmd_context *cmd, int argc, char **argv) stack; ret = ECMD_FAILED; } + if (sigint_caught()) + return_ECMD_FAILED; } return ret;