stanchion: remove ssl option

Changed files
-10
nixos
modules
services
databases
-10
nixos/modules/services/databases/stanchion.nix
···
'';
};
-
stanchionSsl = mkOption {
-
type = types.bool;
-
default = true;
-
description = ''
-
Tell stanchion to use SSL.
-
'';
-
};
-
distributedCookie = mkOption {
type = types.str;
default = "riak";
···
nodename = ${cfg.nodeName}
distributed_cookie = ${cfg.distributedCookie}
-
-
stanchion_ssl=${if cfg.stanchionSsl then "on" else "off"}
${cfg.extraConfig}
'';