forked from websterclay/rebar_riak_core
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathriak_core_multinode.reltool.config
36 lines (33 loc) · 1.03 KB
/
riak_core_multinode.reltool.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{sys, [
{lib_dirs, ["../apps/", "../deps/"]},
{rel, "{{nodeid}}", "1",
[
kernel,
stdlib,
sasl,
{{appid}}
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "{{nodeid}}"},
{profile, embedded},
{excl_sys_filters, ["^bin/.*",
"^erts.*/bin/(dialyzer|typer)"]},
{app, sasl, [{incl_cond, include}]},
{app, {{appid}}, [{incl_cond, include}]}
]}.
{target_dir, "{{nodeid}}"}.
{overlay_vars, "vars.config"}.
{overlay, [
{mkdir, "data/ring"},
{mkdir, "log/sasl"},
{copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},
{copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
{template, "files/app.config", "etc/app.config"},
{template, "files/vm.args", "etc/vm.args"},
{template, "files/{{nodeid}}", "bin/{{nodeid}}"},
{template, "files/{{nodeid}}-admin", "bin/{{nodeid}}-admin"}
]}.