diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2013-07-29 16:02:48 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2013-07-29 16:02:48 +0100 |
| commit | 627ce406058688e728bba7dbb4dfe574003b6ae5 (patch) | |
| tree | 7b4d248f97f11331d7fbb9a5b70df4ca87cb0efa /packaging/standalone | |
| parent | 124c698ea57108f7bd087a646290d5a792b87b68 (diff) | |
| parent | a55b4219197ace8dabc6135c920bcd7dfecf724f (diff) | |
| download | rabbitmq-server-git-627ce406058688e728bba7dbb4dfe574003b6ae5.tar.gz | |
Merge bug25670
Diffstat (limited to 'packaging/standalone')
| -rw-r--r-- | packaging/standalone/src/rabbit_release.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packaging/standalone/src/rabbit_release.erl b/packaging/standalone/src/rabbit_release.erl index 26f36d6861..9473cbda97 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), |
