From 6990b0122ec4e67edfabb72cf730e42c3b90f46f Mon Sep 17 00:00:00 2001 From: Enrico204 Date: Sun, 27 Aug 2023 10:40:57 +0200 Subject: [PATCH] Add issue-4251 (stdin-from-command) in the changelog --- changelog/unreleased/issue-4251 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 changelog/unreleased/issue-4251 diff --git a/changelog/unreleased/issue-4251 b/changelog/unreleased/issue-4251 new file mode 100644 index 000000000..b2c39c290 --- /dev/null +++ b/changelog/unreleased/issue-4251 @@ -0,0 +1,10 @@ +Enhancement: Add flag to source the backup from a program's standard output + +The `backup` command now supports sourcing the backup content from the standard +output of an arbitrary command, ensuring that the exit code is zero for a +successful backup. + +Example: `restic backup --stdin-from-command mysqldump [...]` + +https://github.com/restic/restic/issues/4251 +https://github.com/restic/restic/pull/4410