Backupbot Revolution #23

Merged
moritz merged 31 commits from backupbot_revolution into main 2023-10-09 10:54:22 +00:00
12 changed files with 350 additions and 231 deletions
Showing only changes of commit ebc0ea5d84 - Show all commits

View File

@ -145,6 +145,7 @@ def list_files(snapshot, path):
@click.option('snapshot', '--snapshot', '-s', envvar='SNAPSHOT', default='latest')
@click.option('path', '--path', '-p', envvar='INCLUDE_PATH')
def download(snapshot, path):
path = path.removesuffix('/')
files = list_files(snapshot, path)
filetype = [f.get('type') for f in files if f.get('path') == path][0]
cmd = restic.cat.base_command() + ['dump', snapshot, path]

View File

@ -5,7 +5,6 @@ set -e -o pipefail
apk add --upgrade --no-cache \
restic=0.15.2-r3 \
bash=5.2.15-r5 \
restic=0.15.2-r2 \
python3=3.11.5-r0 \
py3-pip=23.1.2-r0