From 336d6cc51332965a7c9c6f9f9feefbcfe9760b18 Mon Sep 17 00:00:00 2001 From: Matthew Daiter Date: Fri, 17 Feb 2017 12:47:27 +0100 Subject: [PATCH] stanchion: remove ssl option --- nixos/modules/services/databases/stanchion.nix | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/nixos/modules/services/databases/stanchion.nix b/nixos/modules/services/databases/stanchion.nix index f2dbb78b5c4b..a4597cac3cd6 100644 --- a/nixos/modules/services/databases/stanchion.nix +++ b/nixos/modules/services/databases/stanchion.nix @@ -76,14 +76,6 @@ in ''; }; - stanchionSsl = mkOption { - type = types.bool; - default = true; - description = '' - Tell stanchion to use SSL. - ''; - }; - distributedCookie = mkOption { type = types.str; default = "riak"; @@ -148,8 +140,6 @@ in distributed_cookie = ${cfg.distributedCookie} - stanchion_ssl=${if cfg.stanchionSsl then "on" else "off"} - ${cfg.extraConfig} '';