summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMatthew Daiter <matthew@nomoko.camera>2017-02-17 12:47:27 +0100
committerRobin Gloster <mail@glob.in>2017-02-17 13:24:51 +0100
commit336d6cc51332965a7c9c6f9f9feefbcfe9760b18 (patch)
tree6cf345a12e60028be2b8160aa7bf2dcfdeaa9e51 /nixos
parent47ded42788caf8c8ec939de387341b9c113943e6 (diff)
downloadnixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar.gz
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar.bz2
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar.lz
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar.xz
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.tar.zst
nixlib-336d6cc51332965a7c9c6f9f9feefbcfe9760b18.zip
stanchion: remove ssl option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/databases/stanchion.nix10
1 files changed, 0 insertions, 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}
     '';