From c47dc0de2c567195206523a057c7df067d6fb076 Mon Sep 17 00:00:00 2001
From: rinpatch <rinpatch@sdf.org>
Date: Sat, 8 Jun 2019 17:17:10 +0300
Subject: [PATCH] Load ex_syslog and copy pleroma_ctl

---
 mix.exs | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/mix.exs b/mix.exs
index 9447a2e4f..a6481bab6 100644
--- a/mix.exs
+++ b/mix.exs
@@ -32,10 +32,22 @@ def project do
         ],
         main: "readme",
         output: "priv/static/doc"
+      ],
+      releases: [
+        pleroma: [
+          include_executables_for: [:unix],
+          applications: [ex_syslogger: :load, syslog: :load],
+          steps: [:assemble, &copy_pleroma_ctl/1]
+        ]
       ]
     ]
   end
 
+  def copy_pleroma_ctl(%{path: target_path} = release) do
+    File.cp!("./rel/pleroma_ctl", Path.join([target_path, "bin", "pleroma_ctl"]))
+    release
+  end
+
   # Configuration for the OTP application.
   #
   # Type `mix help compile.app` for more information.