borgbackup: try to get a bit more info from borg... (fix options)

This commit is contained in:
Daniel Frank 2019-07-05 22:02:04 +02:00
parent 300813e0bb
commit 99b718c232
Signed by: tokudan
GPG key ID: 063CCCAD04182D32

View file

@ -40,7 +40,8 @@ in
}; };
compression = "auto,lz4"; compression = "auto,lz4";
startAt = "hourly"; startAt = "hourly";
extraArgs = "--info --stats"; extraArgs = "--info";
extraCreateArgs = "--stats";
}; };
services.borgbackup.jobs.maildata = { services.borgbackup.jobs.maildata = {
readWritePaths = [ "/var/lib/borgbackup" ]; readWritePaths = [ "/var/lib/borgbackup" ];
@ -60,6 +61,7 @@ in
}; };
compression = "auto,lz4"; compression = "auto,lz4";
startAt = "daily"; startAt = "daily";
extraArgs = "--info --stats"; extraArgs = "--info";
extraCreateArgs = "--stats";
}; };
} }