pythonPackages.elasticsearch-curator: 5.5.4 -> 5.6.0

This commit is contained in:
Bas van Dijk
2018-12-13 20:58:58 +01:00
parent 1ce2cc47fc
commit 5d970e740e
2 changed files with 5 additions and 4 deletions
@@ -82,11 +82,12 @@ in {
};
config = mkIf cfg.enable {
systemd.services.elasticsearch-curator = {
startAt = cfg.interval;
serviceConfig = {
ExecStart = ''${pkgs.python36Packages.elasticsearch-curator}/bin/curator --config ${curatorConfig} ${curatorAction}'';
ExecStart =
"${pkgs.python3Packages.elasticsearch-curator}/bin/curator" +
" --config ${curatorConfig} ${curatorAction}";
};
};
};