diff options
author | makefu <github@syntax-fehler.de> | 2016-04-03 21:55:01 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-04-03 21:55:01 +0200 |
commit | 3d5c085f100d91543cb0f786337c4f4a1756f216 (patch) | |
tree | 8eb08d5b52f6b18402d393670fad54999e2bf1bc /makefu | |
parent | ef74e1f71338bba1eb558b63e100c4803c33cd8c (diff) |
ma 4 default: prepare backups
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/4lib/default.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/makefu/4lib/default.nix b/makefu/4lib/default.nix new file mode 100644 index 000000000..5e9ab2087 --- /dev/null +++ b/makefu/4lib/default.nix @@ -0,0 +1,30 @@ +{ config, lib, ... }: + +with lib; +let + addDefaultTime = bku-entry: recursiveUpdate { + snapshots = { + daily = { format = "%Y-%m-%d"; retain = 7; }; + weekly = { format = "%YW%W"; retain = 4; }; + monthly = { format = "%Y-%m"; retain = 12; }; + yearly = { format = "%Y"; }; + }; + startAt = "5:23"; + } bku-entry; + + backup-host = config.krebs.hosts.omo; + backup-path = "/media/backup"; +in { + bku = { + inherit addDefaultTime; + simplePath = addDefaultTime (path: { + method = "pull"; + src = { host = config.krebs.build.host; inherit path; }; + dst = { + host = backup-host; + path = backup-path ++ config.krebs.build.host.name + ++ builtins.replaceStrings ["/"] ["-"] path; + }; + }); + }; +} |