summary refs log tree commit diff
path: root/nixos/modules/services/search
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 /nixos/modules/services/search
parent374446758928f6101df8a609de6cc614afbd24f3 (diff)
downloadnixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.gz
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.bz2
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.lz
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.xz
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.tar.zst
nixlib-2ec33f527b604ae438e34fc598d85c50d88e4a61.zip
elasticsearch-curator: don't need to add enable to elasticsearch-curator service
Diffstat (limited to 'nixos/modules/services/search')
-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 c694f812caf6..63ffe10d21f0 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}'';