Merge pull request #3723 from ThomasWaldmann/stdin-filename-1.1

create: implement --stdin-name, fixes #3533 (1.1 backport)
This commit is contained in:
TW 2018-03-25 00:33:53 +01:00 committed by GitHub
commit 2147df91be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -485,7 +485,7 @@ class Archiver:
logger.debug('Processing files ...')
for path in args.paths:
if path == '-': # stdin
path = 'stdin'
path = args.stdin_name
if not dry_run:
try:
status = archive.process_stdin(path, cache)
@ -3138,6 +3138,8 @@ class Archiver:
help='experimental: do not synchronize the cache. Implies not using the files cache.')
subparser.add_argument('--no-files-cache', dest='cache_files', action='store_false',
help='do not load/update the file metadata cache used to detect unchanged files')
subparser.add_argument('--stdin-name', metavar='NAME', dest='stdin_name', default='stdin',
help='use NAME in archive for stdin data (default: "stdin")')
exclude_group = define_exclusion_group(subparser, tag_files=True)
exclude_group.add_argument('--exclude-nodump', dest='exclude_nodump', action='store_true',