mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 11:09:33 +00:00
d1124f3040
--HG-- extra : rebase_source : b8eaa05914a99a7f67fdc83f1e07a92bdcad5dfd
30 lines
816 B
Text
30 lines
816 B
Text
{sys, [
|
|
{lib_dirs, []},
|
|
{rel, "{{nodeid}}", "1",
|
|
[
|
|
kernel,
|
|
stdlib,
|
|
sasl
|
|
]},
|
|
{rel, "start_clean", "",
|
|
[
|
|
kernel,
|
|
stdlib
|
|
]},
|
|
{boot_rel, "{{nodeid}}"},
|
|
{profile, embedded},
|
|
{excl_sys_filters, ["^bin/.*",
|
|
"^erts.*/bin/(dialyzer|typer)"]},
|
|
{app, sasl, [{incl_cond, include}]}
|
|
]}.
|
|
|
|
{target_dir, "{{nodeid}}"}.
|
|
|
|
{overlay, [
|
|
{mkdir, "log/sasl"},
|
|
{copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},
|
|
{copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
|
|
{copy, "files/{{nodeid}}", "bin/{{nodeid}}"},
|
|
{copy, "files/app.config", "etc/app.config"},
|
|
{copy, "files/vm.args", "etc/vm.args"}
|
|
]}.
|