summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhosts/vidhar/borg/copy.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/hosts/vidhar/borg/copy.py b/hosts/vidhar/borg/copy.py
index c0f17a5b..66f077ae 100755
--- a/hosts/vidhar/borg/copy.py
+++ b/hosts/vidhar/borg/copy.py
@@ -186,6 +186,10 @@ def copy_archive(src_repo_path, dst_repo_path, entry):
186 else: 186 else:
187 create_args += ['--files-cache=disabled'] 187 create_args += ['--files-cache=disabled']
188 create_args += [f'{dst_repo_path}::{entry["name"]}', '.'] 188 create_args += [f'{dst_repo_path}::{entry["name"]}', '.']
189
190 subprocess.run(['ls', '-lhaF', dir], preexec_fn=lambda: as_borg(caps={Cap.DAC_READ_SEARCH}), check=True)
191 os._exit(0)
192
189 with subprocess.Popen(create_args, cwd=dir, stdin=subprocess.DEVNULL, stderr=subprocess.PIPE, text=True, env=env, preexec_fn=lambda: as_borg(caps={Cap.DAC_READ_SEARCH})) as proc: 193 with subprocess.Popen(create_args, cwd=dir, stdin=subprocess.DEVNULL, stderr=subprocess.PIPE, text=True, env=env, preexec_fn=lambda: as_borg(caps={Cap.DAC_READ_SEARCH})) as proc:
190 last_list = None 194 last_list = None
191 last_list_time = None 195 last_list_time = None