From 8d52058bfcd14386f336f95d13af8a52fa94ce13 Mon Sep 17 00:00:00 2001 From: Aaron Jensen Date: Thu, 5 May 2016 22:57:28 -0700 Subject: [PATCH] Add :syslog to included_applications Without this, when running an exrm release on the exrm 1.0.4, when exsyslog attempts to start syslog, it will already be started and crash. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2da16e3..5278bb5 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@ defp deps do end ``` -Add `:exsyslog` to your list of `included_applications`: +Add `:exsyslog` and `:syslog` to your list of `included_applications`: ```elixir def application do - [included_applications: [:exsyslog]] + [included_applications: [:exsyslog, :syslog]] end ```