summaryrefslogtreecommitdiffstats
path: root/tv/2configs/backup.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2016-01-05 22:35:05 +0100
committertv <tv@krebsco.de>2016-01-05 22:52:35 +0100
commitb44615eebec6055f3b49a8170354ce4bb3213cb4 (patch)
tree69651db3cf65d034df1751779593914c8f3c6a66 /tv/2configs/backup.nix
parente09559bb786c7cf639dc1428bbe2ed6ba7ced9fb (diff)
tv backup: wu:/home → xu:/bku/wu-home @ 05:00
Diffstat (limited to 'tv/2configs/backup.nix')
-rw-r--r--tv/2configs/backup.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/tv/2configs/backup.nix b/tv/2configs/backup.nix
index 4b31bc84..ce937a74 100644
--- a/tv/2configs/backup.nix
+++ b/tv/2configs/backup.nix
@@ -2,20 +2,17 @@
with lib;
{
krebs.backup.plans = addNames {
- xu-test-cd = {
+ wu-home-xu = {
method = "push";
- src = { host = config.krebs.hosts.xu; path = "/tmp/xu-test"; };
- dst = { host = config.krebs.hosts.cd; path = "/tmp/backups/xu-test"; };
+ src = { host = config.krebs.hosts.wu; path = "/home"; };
+ dst = { host = config.krebs.hosts.xu; path = "/bku/wu-home"; };
+ startAt = "05:00";
+ snapshots = {
+ daily = { format = "%Y-%m-%d"; retain = 7; };
+ weekly = { format = "%YW%W"; retain = 4; };
+ monthly = { format = "%Y-%m"; retain = 12; };
+ yearly = { format = "%Y"; };
+ };
};
- #xu-test-wu = {
- # method = "push";
- # dst = { user = tv; host = wu; path = "/krebs/backup/xu-test"; };
- #};
- cd-test-xu = {
- method = "pull";
- src = { host = config.krebs.hosts.cd; path = "/tmp/cd-test"; };
- dst = { host = config.krebs.hosts.xu; path = "/tmp/backups/cd-test"; };
- };
-
};
}