forked from basho/rebar_riak_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathriak_core.reltool.config
37 lines (34 loc) · 1.06 KB
/
riak_core.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
37
{sys, [
{lib_dirs, ["../apps/", "../deps/"]},
{rel, "{{appid}}", "1",
[
kernel,
stdlib,
sasl,
{{appid}}
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "{{appid}}"},
{profile, embedded},
{excl_sys_filters, ["^bin/.*",
"^erts.*/bin/(dialyzer|typer)"]},
{excl_archive_filters, [".*"]},
{app, sasl, [{incl_cond, include}]},
{app, {{appid}}, [{incl_cond, include}]}
]}.
{target_dir, "{{appid}}"}.
{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/{{appid}}", "bin/{{appid}}"},
{template, "files/{{appid}}-admin", "bin/{{appid}}-admin"}
]}.