mirror of https://github.com/restic/restic.git
extend changelog for --stdin-from-command
This commit is contained in:
parent
ee305e6041
commit
5d152c7720
|
@ -1,8 +1,12 @@
|
||||||
Enhancement: Add flag to source the backup from a program's standard output
|
Enhancement: Support reading backup from a program's standard output
|
||||||
|
|
||||||
The `backup` command now supports sourcing the backup content from the standard
|
When reading data from stdin, the `backup` command could not verify whether the
|
||||||
output of an arbitrary command, ensuring that the exit code is zero for a
|
corresponding command completed successfully.
|
||||||
successful backup.
|
|
||||||
|
The `backup` command now supports starting an arbitrary command and sourcing
|
||||||
|
the backup content from its standard output. This enables restic to verify that
|
||||||
|
the command completes with exit code zero. A non-zero exit code causes the
|
||||||
|
backup to fail.
|
||||||
|
|
||||||
Example: `restic backup --stdin-from-command mysqldump [...]`
|
Example: `restic backup --stdin-from-command mysqldump [...]`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue