mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
91 lines
2.8 KiB
Nix
91 lines
2.8 KiB
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.zfs.autoReplication;
|
|
recursive = optionalString cfg.recursive " --recursive";
|
|
followDelete = optionalString cfg.followDelete " --follow-delete";
|
|
in {
|
|
options = {
|
|
services.zfs.autoReplication = {
|
|
enable = mkEnableOption (lib.mdDoc "ZFS snapshot replication.");
|
|
|
|
followDelete = mkOption {
|
|
description = lib.mdDoc "Remove remote snapshots that don't have a local correspondant.";
|
|
default = true;
|
|
type = types.bool;
|
|
};
|
|
|
|
host = mkOption {
|
|
description = lib.mdDoc "Remote host where snapshots should be sent. `lz4` is expected to be installed on this host.";
|
|
example = "example.com";
|
|
type = types.str;
|
|
};
|
|
|
|
identityFilePath = mkOption {
|
|
description = lib.mdDoc "Path to SSH key used to login to host.";
|
|
example = "/home/username/.ssh/id_rsa";
|
|
type = types.path;
|
|
};
|
|
|
|
localFilesystem = mkOption {
|
|
description = lib.mdDoc "Local ZFS fileystem from which snapshots should be sent. Defaults to the attribute name.";
|
|
example = "pool/file/path";
|
|
type = types.str;
|
|
};
|
|
|
|
remoteFilesystem = mkOption {
|
|
description = lib.mdDoc "Remote ZFS filesystem where snapshots should be sent.";
|
|
example = "pool/file/path";
|
|
type = types.str;
|
|
};
|
|
|
|
recursive = mkOption {
|
|
description = lib.mdDoc "Recursively discover snapshots to send.";
|
|
default = true;
|
|
type = types.bool;
|
|
};
|
|
|
|
username = mkOption {
|
|
description = lib.mdDoc "Username used by SSH to login to remote host.";
|
|
example = "username";
|
|
type = types.str;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
pkgs.lz4
|
|
];
|
|
|
|
systemd.services.zfs-replication = {
|
|
after = [
|
|
"zfs-snapshot-daily.service"
|
|
"zfs-snapshot-frequent.service"
|
|
"zfs-snapshot-hourly.service"
|
|
"zfs-snapshot-monthly.service"
|
|
"zfs-snapshot-weekly.service"
|
|
];
|
|
description = "ZFS Snapshot Replication";
|
|
documentation = [
|
|
"https://github.com/alunduil/zfs-replicate"
|
|
];
|
|
restartIfChanged = false;
|
|
serviceConfig.ExecStart = "${pkgs.zfs-replicate}/bin/zfs-replicate${recursive} -l ${escapeShellArg cfg.username} -i ${escapeShellArg cfg.identityFilePath}${followDelete} ${escapeShellArg cfg.host} ${escapeShellArg cfg.remoteFilesystem} ${escapeShellArg cfg.localFilesystem}";
|
|
wantedBy = [
|
|
"zfs-snapshot-daily.service"
|
|
"zfs-snapshot-frequent.service"
|
|
"zfs-snapshot-hourly.service"
|
|
"zfs-snapshot-monthly.service"
|
|
"zfs-snapshot-weekly.service"
|
|
];
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ alunduil ];
|
|
};
|
|
}
|