diff options
| author | Alvaro Videla <videlalvaro@gmail.com> | 2013-07-22 21:19:34 +0200 |
|---|---|---|
| committer | Alvaro Videla <videlalvaro@gmail.com> | 2013-07-22 21:19:34 +0200 |
| commit | 9be893a12ed0ea76216dfcdadb9c071753bdc5ba (patch) | |
| tree | 591028eeeabf07b87488d8115aa7c411ce2be0e1 /packaging | |
| parent | 81efcf193975ad4b42b5b50e58e1d0b1eae30f27 (diff) | |
| download | rabbitmq-server-git-9be893a12ed0ea76216dfcdadb9c071753bdc5ba.tar.gz | |
introduces ssl_apps as a env parameter
Diffstat (limited to 'packaging')
| -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), |
