From 3174641ca4bde8a30cf2413555e5c00539860fcf Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Fri, 26 Aug 2022 23:17:04 +0200 Subject: [PATCH] add changelog for mount exit code filtering --- changelog/unreleased/issue-2015 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog/unreleased/issue-2015 diff --git a/changelog/unreleased/issue-2015 b/changelog/unreleased/issue-2015 new file mode 100644 index 000000000..e611bcbf8 --- /dev/null +++ b/changelog/unreleased/issue-2015 @@ -0,0 +1,10 @@ +Bugfix: Mount command should return exit code 0 after receiving Ctrl-C + +To stop the mount command, a user has to press Ctrl-C or send a SIGINT to +restic. This caused restic to exit with a non-zero exit code. + +We have changed the exit code to zero as this is the expected way to stop the +mount command. + +https://github.com/restic/restic/issues/2015 +https://github.com/restic/restic/pull/3894