Do not let restic group by path

This commit is contained in:
Wojciech Kozlowski 2023-09-30 17:40:31 +02:00
parent 18e58d09fe
commit 5ee59ae336

View File

@ -81,6 +81,7 @@ class Volume(abc.ABC):
# -------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------
subprocess.run( subprocess.run(
self._restic_cmd_base + ["forget", "--prune", self._restic_cmd_base + ["forget", "--prune",
"--group-by", "",
"--keep-daily", str(self._restic_keep_daily), "--keep-daily", str(self._restic_keep_daily),
"--keep-monthly", str(self._restic_keep_monthly)], "--keep-monthly", str(self._restic_keep_monthly)],
env=self._environ, check=True, env=self._environ, check=True,