2010-01-08 19:16:57 +00:00
|
|
|
{sys, [
|
|
|
|
{lib_dirs, []},
|
|
|
|
{rel, "{{nodeid}}", "1",
|
|
|
|
[
|
|
|
|
kernel,
|
|
|
|
stdlib,
|
|
|
|
sasl
|
|
|
|
]},
|
|
|
|
{rel, "start_clean", "",
|
|
|
|
[
|
|
|
|
kernel,
|
|
|
|
stdlib
|
|
|
|
]},
|
|
|
|
{boot_rel, "{{nodeid}}"},
|
|
|
|
{profile, embedded},
|
2011-09-20 16:44:41 +00:00
|
|
|
{excl_archive_filters, [".*"]}, %% Do not archive built libs
|
2010-01-08 19:16:57 +00:00
|
|
|
{excl_sys_filters, ["^bin/.*",
|
|
|
|
"^erts.*/bin/(dialyzer|typer)"]},
|
2011-09-20 16:44:41 +00:00
|
|
|
|
|
|
|
%% Including HiPE can cause issues generating your first upgrade.
|
|
|
|
%% If you plan to distribute HiPE in your release remove the
|
|
|
|
%% following line.
|
|
|
|
{app, hipe, [{incl_cond, exclude}]},
|
|
|
|
|
2010-01-08 19:16:57 +00:00
|
|
|
{app, sasl, [{incl_cond, include}]}
|
|
|
|
]}.
|
|
|
|
|
2010-07-06 18:03:20 +00:00
|
|
|
{target_dir, "{{nodeid}}"}.
|
2010-01-08 19:16:57 +00:00
|
|
|
|
2010-07-06 18:03:20 +00:00
|
|
|
{overlay, [
|
|
|
|
{mkdir, "log/sasl"},
|
|
|
|
{copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},
|
|
|
|
{copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
|
|
|
|
{copy, "files/{{nodeid}}", "bin/{{nodeid}}"},
|
2011-09-20 16:44:41 +00:00
|
|
|
{copy, "files/sys.config", "releases/\{\{rel_vsn\}\}/sys.config"},
|
2011-08-10 15:32:26 +00:00
|
|
|
{copy, "files/{{nodeid}}.cmd", "bin/{{nodeid}}.cmd"},
|
|
|
|
{copy, "files/start_erl.cmd", "bin/start_erl.cmd"},
|
2011-09-20 16:44:41 +00:00
|
|
|
{copy, "files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"}
|
2011-04-15 14:40:25 +00:00
|
|
|
]}.
|