summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Smith <shmish111@gmail.com>2018-08-21 09:39:12 +0100
committerBas van Dijk <v.dijk.bas@gmail.com>2018-08-25 18:53:10 +0200
commit2ec33f527b604ae438e34fc598d85c50d88e4a61 (patch)
tree4706904d8cb0c7cbcc5bc264ea940000ac504b11
parent374446758928f6101df8a609de6cc614afbd24f3 (diff)
downloadnixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.gz
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.bz2
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.lz
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.xz
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.zst
nixpkgs-2ec33f527b604ae438e34fc598d85c50d88e4a61.zip
elasticsearch-curator: don't need to add enable to elasticsearch-curator service
-rw-r--r--nixos/modules/services/search/elasticsearch-curator.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/nixos/modules/services/search/elasticsearch-curator.nix b/nixos/modules/services/search/elasticsearch-curator.nix
index c694f812caf..63ffe10d21f 100644
--- a/nixos/modules/services/search/elasticsearch-curator.nix
+++ b/nixos/modules/services/search/elasticsearch-curator.nix
@@ -84,7 +84,6 @@ in {
   config = mkIf cfg.enable {
 
     systemd.services.elasticsearch-curator = {
-      enable = cfg.enable;
       startAt = cfg.interval;
       serviceConfig = {
         ExecStart = ''${pkgs.python36Packages.elasticsearch-curator}/bin/curator --config ${curatorConfig} ${curatorAction}'';