Merge pull request #3555 from leo-b/1.1-maint-archive-metadata

add chunker_params to borg archive info (--json)
This commit is contained in:
TW 2018-01-29 17:52:26 +01:00 committed by GitHub
commit b602612a40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -328,6 +328,8 @@ command_line
Array of strings of the command line that created the archive
The note about paths from above applies here as well.
chunker_params
The chunker parameters the archive has been created with.
:ref:`borg_info` further has:
@ -363,6 +365,12 @@ The same archive with more information (``borg info --last 1 --json``)::
{
"archives": [
{
"chunker_params": [
13,
23,
16,
4095
],
"command_line": [
"/home/user/.local/bin/borg",
"create",

View file

@ -399,6 +399,7 @@ class Archive:
'hostname': self.metadata.hostname,
'username': self.metadata.username,
'comment': self.metadata.get('comment', ''),
'chunker_params': self.metadata.get('chunker_params', ''),
})
return info