aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-11 18:55:55 +0300
committerrinpatch <rinpatch@sdf.org>2019-06-11 18:55:55 +0300
commitf0d96534a4645f0996b3fab7ab5ba3b482fd4e23 (patch)
tree0913b40d8bffd61a0e1d9bfeed07f65623846511
parent3235923276650ac3a5b8a64c985f118d0f6e309e (diff)
downloadpleroma-f0d96534a4645f0996b3fab7ab5ba3b482fd4e23.tar.gz
Import release config from env variable or /etc/pleroma/config.exs and
warn if the file is missing
-rw-r--r--config/releases.exs15
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