diff options
author | kaniini <nenolod@gmail.com> | 2019-05-22 18:57:34 +0000 |
---|---|---|
committer | kaniini <nenolod@gmail.com> | 2019-05-22 18:57:34 +0000 |
commit | f0516d911437527891f19f0936fb558e817a75ac (patch) | |
tree | 0bafb578fc02d56955fee1d28a7b85a5361b26e2 /mix.exs | |
parent | 0b4f569c5ba10be61733d37f0be9bee5af693daf (diff) | |
parent | 78ac8ee56139ed98625c54ce627eb37047a361f0 (diff) | |
download | pleroma-f0516d911437527891f19f0936fb558e817a75ac.tar.gz pleroma-f0516d911437527891f19f0936fb558e817a75ac.zip |
Merge branch 'ssh-fixes' into 'develop'
Ssh fixes
Closes #869 and #925
See merge request pleroma/pleroma!1191
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -42,7 +42,7 @@ defmodule Pleroma.Mixfile do def application do [ mod: {Pleroma.Application, []}, - extra_applications: [:logger, :runtime_tools, :comeonin, :esshd, :quack], + extra_applications: [:logger, :runtime_tools, :comeonin, :quack], included_applications: [:ex_syslogger] ] end @@ -117,7 +117,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} |