diff options
author | lain <lain@soykaf.club> | 2019-06-12 09:58:16 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-06-12 09:58:16 +0000 |
commit | 822a9f28d08af9da69a8e0f72cc6511252f25ddd (patch) | |
tree | e0a6bac9e51f7eb96210ed55307cebb1f1014535 | |
parent | 4265608097fea6611570409a14cec7b4daf01b51 (diff) | |
parent | f0d96534a4645f0996b3fab7ab5ba3b482fd4e23 (diff) | |
download | pleroma-822a9f28d08af9da69a8e0f72cc6511252f25ddd.tar.gz pleroma-822a9f28d08af9da69a8e0f72cc6511252f25ddd.zip |
Merge branch 'release-config-import' into 'develop'
Import release config from env variable or /etc/pleroma/config.exs and warn if the file is missing
See merge request pleroma/pleroma!1269
-rw-r--r-- | config/releases.exs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/releases.exs b/config/releases.exs index becde7693..f8494dd34 100644 --- a/config/releases.exs +++ b/config/releases.exs @@ -1 +1,16 @@ import Config + +config_path = System.get_env("PLEROMA_CONFIG_PATH") || "/etc/pleroma/config.exs" + +if File.exists?(config_path) do + import_config config_path +else + 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", + IO.ANSI.reset() + ] + + IO.puts(warning) +end |