diff options
author | lain <lain@soykaf.club> | 2019-05-22 12:57:20 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-22 12:57:20 +0200 |
commit | f323031927ecaf155e661b17cc9b96333fb9e4ad (patch) | |
tree | 04816a23b761452c527e10b76fec19b2c6c8cd5b | |
parent | 3b12e1ba7c99382c678ce17629352135f44dcb9f (diff) | |
download | pleroma-f323031927ecaf155e661b17cc9b96333fb9e4ad.tar.gz |
Mix: Only start sshd when needed, second try.
-rw-r--r-- | mix.exs | 13 |
1 files changed, 2 insertions, 11 deletions
@@ -40,18 +40,9 @@ defmodule Pleroma.Mixfile do # # Type `mix help compile.app` for more information. def application do - extra_applications = [:logger, :runtime_tools, :comeonin, :quack] - - extra_applications = - if Application.get_env(:esshd, :enabled, false) do - [:esshd | extra_applications] - else - extra_applications - end - [ mod: {Pleroma.Application, []}, - extra_applications: extra_applications, + extra_applications: [:logger, :runtime_tools, :comeonin, :quack], included_applications: [:ex_syslogger] ] end @@ -129,7 +120,7 @@ defmodule Pleroma.Mixfile do {:recon, github: "ferd/recon", tag: "2.4.0"}, {:quack, "~> 0.1.1"}, {:benchee, "~> 1.0"}, - {:esshd, "~> 0.1.0"}, + {:esshd, "~> 0.1.0", runtime: Application.get_env(:esshd, :enabled, false)}, {:ex_rated, "~> 1.2"}, {:plug_static_index_html, "~> 1.0.0"}, {:excoveralls, "~> 0.11.1", only: :test} |