summaryrefslogtreecommitdiff
path: root/packaging/standalone
diff options
context:
space:
mode:
authorEmile Joubert <emile@rabbitmq.com>2013-07-31 13:06:16 +0100
committerEmile Joubert <emile@rabbitmq.com>2013-07-31 13:06:16 +0100
commit2dde2df7e97ceadabba80ac8b993b23b0db5e5d3 (patch)
tree97db40e02fbc1aa2043d545da2dda08e046e7096 /packaging/standalone
parent2af61b7e9bb98204fcec6745082e0aaeb50342f6 (diff)
parentba092e1e82fbb26e6f7da5153fdbbd66ae6b72e3 (diff)
downloadrabbitmq-server-git-2dde2df7e97ceadabba80ac8b993b23b0db5e5d3.tar.gz
Refresh branch from stable
Diffstat (limited to 'packaging/standalone')
-rw-r--r--packaging/standalone/src/rabbit_release.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/packaging/standalone/src/rabbit_release.erl b/packaging/standalone/src/rabbit_release.erl
index dd68ee7edf..f5e1ecf8a1 100644
--- a/packaging/standalone/src/rabbit_release.erl
+++ b/packaging/standalone/src/rabbit_release.erl
@@ -54,7 +54,9 @@ start() ->
end,
%% we need a list of ERTS apps we need to ship with rabbit
- BaseApps = AllApps -- PluginAppNames,
+ {ok, SslAppsConfig} = application:get_env(rabbit, ssl_apps),
+
+ BaseApps = SslAppsConfig ++ AllApps -- PluginAppNames,
AppVersions = [determine_version(App) || App <- BaseApps],
RabbitVersion = proplists:get_value(rabbit, AppVersions),