implement bjornfors comments

This commit is contained in:
Aristid Breitkreuz 2013-10-06 23:02:41 +02:00
parent cd98acd3a7
commit fa1f5e5b75

View File

@ -9,16 +9,23 @@ in
services.rsnapshot = {
enable = mkEnableOption "rsnapshot backups";
configuration = mkOption {
extraConfiguration = mkOption {
default = "";
example = ''
retain hourly 24
retains hourly 24
retain daily 365
backup /home/ localhost/
'';
type = types.lines;
description = ''
rsnapshot configuration option in addition to the defaults from rsnapshot and this module.
rsnapshot configuration option in addition to the defaults from
rsnapshot and this module.
Note that tabs are required to separate option arguments, and
directory names require trailing slashes.
The "extra" in the option name might be a little misleading right
now, as it is required to get a functional configuration.
'';
};
@ -51,6 +58,6 @@ in
cmd_rsnapshot_diff ${rsnapshot}/bin/rsnapshot-diff
lockfile /run/rsnapshot.pid
'' + cfg.configuration);
'' + cfg.extraConfiguration);
};
}