aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexander Strizhakov <alex.strizhakov@gmail.com>2021-03-27 09:05:33 +0300
committerAlexander Strizhakov <alex.strizhakov@gmail.com>2021-03-27 09:05:33 +0300
commit4d046afd2769cfdc16b2ee48e8c1d8f7f8e8ffa7 (patch)
tree26d0b4efa616c384d9e6d6c8876b42773d36dead /lib
parent6e108b8603de45d489d4aef7e3e271bc5e8c431d (diff)
downloadpleroma-4d046afd2769cfdc16b2ee48e8c1d8f7f8e8ffa7.tar.gz
tests for release config provider
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/config/release_runtime_provider.ex17
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/pleroma/config/release_runtime_provider.ex b/lib/pleroma/config/release_runtime_provider.ex
index 70ef3bcc1..46fa35559 100644
--- a/lib/pleroma/config/release_runtime_provider.ex
+++ b/lib/pleroma/config/release_runtime_provider.ex
@@ -1,6 +1,6 @@
defmodule Pleroma.Config.ReleaseRuntimeProvider do
@moduledoc """
- Imports `runtime.exs` and `{env}.exported_from_db.secret.exs` for elixir releases.
+ Imports runtime config and `{env}.exported_from_db.secret.exs` for releases.
"""
@behaviour Config.Provider
@@ -8,13 +8,13 @@ defmodule Pleroma.Config.ReleaseRuntimeProvider do
def init(opts), do: opts
@impl true
- def load(config, _opts) do
+ def load(config, opts) do
with_defaults = Config.Reader.merge(config, Pleroma.Config.Holder.release_defaults())
- config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs"
+ config_path = opts[:config_path]
with_runtime_config =
- if File.exists?(config_path) do
+ if config_path && File.exists?(config_path) do
runtime_config = Config.Reader.read!(config_path)
with_defaults
@@ -24,7 +24,7 @@ defmodule Pleroma.Config.ReleaseRuntimeProvider do
warning = [
IO.ANSI.red(),
IO.ANSI.bright(),
- "!!! #{config_path} not found! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file",
+ "!!! Config path is not declared! Please ensure it exists and that PLEROMA_CONFIG_PATH is unset or points to an existing file",
IO.ANSI.reset()
]
@@ -32,13 +32,10 @@ defmodule Pleroma.Config.ReleaseRuntimeProvider do
with_defaults
end
- exported_config_path =
- config_path
- |> Path.dirname()
- |> Path.join("prod.exported_from_db.secret.exs")
+ exported_config_path = opts[:exported_config_path]
with_exported =
- if File.exists?(exported_config_path) do
+ if exported_config_path && File.exists?(exported_config_path) do
exported_config = Config.Reader.read!(exported_config_path)
Config.Reader.merge(with_runtime_config, exported_config)
else