commit: 822a9f28d08af9da69a8e0f72cc6511252f25ddd
parent 4265608097fea6611570409a14cec7b4daf01b51
Author: lain <lain@soykaf.club>
Date: Wed, 12 Jun 2019 09:58:16 +0000
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
Diffstat:
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git 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