restic/system: Enable compression

Fixes #66.
nazuna
Simon Bruder 2022-12-13 09:59:31 +01:00
parent 73c6fe8195
commit 54c5cfb240
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 3 additions and 0 deletions

View File

@ -62,6 +62,7 @@
enable = true;
startAt = [ ]; # triggered by restic system backup
location = "/var/lib/postgresql-backup";
compression = "none";
};
systemd.services.restic-backups-system = {
after = [ "postgresqlBackup.service" ];

View File

@ -87,6 +87,7 @@ in
"/var"
] ++ cfg.extraPaths;
extraBackupArgs = [
"--compression auto"
"--exclude-caches"
"--exclude-file=${excludesFile}"
"--tag system"
@ -113,6 +114,7 @@ in
"sftp.command='ssh -i ${config.sops.secrets.restic-ssh-key.path} -p ${toString sftpPort} ${sftpTarget} -s sftp'"
];
pruneOpts = [
"--compression auto"
"--keep-daily 7"
"--keep-monthly 12"
"--keep-weekly 5"