From b5f4ceb5b42314c3d71710006f57e34fb512abf2 Mon Sep 17 00:00:00 2001 From: Matthias Radestock Date: Tue, 13 Jan 2009 19:00:50 +0000 Subject: auto-generate rabbit.app module list --- ebin/rabbit_app.in | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ebin/rabbit_app.in (limited to 'ebin/rabbit_app.in') diff --git a/ebin/rabbit_app.in b/ebin/rabbit_app.in new file mode 100644 index 00000000..e2f36c0f --- /dev/null +++ b/ebin/rabbit_app.in @@ -0,0 +1,20 @@ +{application, rabbit, %% -*- erlang -*- + [{description, "RabbitMQ"}, + {id, "RabbitMQ"}, + {vsn, "%%VERSION%%"}, + {modules, []}, + {registered, [rabbit_amqqueue_sup, + rabbit_log, + rabbit_node_monitor, + rabbit_persister, + rabbit_router, + rabbit_sup, + rabbit_tcp_client_sup]}, + {applications, [kernel, stdlib, sasl, mnesia, os_mon]}, + {mod, {rabbit, []}}, + {env, [{tcp_listeners, [{"0.0.0.0", 5672}]}, + {extra_startup_steps, []}, + {default_user, <<"guest">>}, + {default_pass, <<"guest">>}, + {default_vhost, <<"/">>}, + {memory_alarms, auto}]}]}. -- cgit v1.2.1