summaryrefslogtreecommitdiff
path: root/hosts/vidhar/borg/copy.py
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2022-02-17 12:45:24 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2022-02-17 12:45:24 +0100
commit7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e (patch)
treea34e8b15301acc87b55d145888d93d9f70941645 /hosts/vidhar/borg/copy.py
parent733c9c7501f48f98946d40230a1b94397c35c51e (diff)
downloadnixos-7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e.tar
nixos-7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e.tar.gz
nixos-7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e.tar.bz2
nixos-7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e.tar.xz
nixos-7fc4ceab1a44333d1f2a5b458e9cbf5dad95a50e.zip
vidhar: ...
Diffstat (limited to 'hosts/vidhar/borg/copy.py')
-rwxr-xr-xhosts/vidhar/borg/copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/vidhar/borg/copy.py b/hosts/vidhar/borg/copy.py
index db907297..6cfab881 100755
--- a/hosts/vidhar/borg/copy.py
+++ b/hosts/vidhar/borg/copy.py
@@ -41,7 +41,7 @@ halo_args = {
41def read_repo(path): 41def read_repo(path):
42 with Halo(text=f'Listing {path}', **halo_args) as sp: 42 with Halo(text=f'Listing {path}', **halo_args) as sp:
43 res = None 43 res = None
44 with subprocess.Popen(['borg', 'list', '--debug', '--lock-wait', '120', '--json', path], stdout=subprocess.PIPE) as proc: 44 with subprocess.Popen(['borg', 'list', '--info', '--lock-wait', '120', '--json', path], stdout=subprocess.PIPE) as proc:
45 res = json.load(proc.stdout)['archives'] 45 res = json.load(proc.stdout)['archives']
46 if sp.enabled: 46 if sp.enabled:
47 sp.succeed(f'{len(res)} archives in {path}') 47 sp.succeed(f'{len(res)} archives in {path}')