-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreltool.config
40 lines (38 loc) · 1.38 KB
/
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
38
39
40
{sys, [
{lib_dirs, ["apps","deps"]},
{erts, [{mod_cond, derived}, {app_file, strip}]},
{app_file, strip},
{rel, "traffic_light", "1",
[
kernel,
stdlib,
sasl,
traffic_light
]},
{rel, "start_clean", "",
[
kernel,
stdlib
]},
{boot_rel, "traffic_light"},
{profile, embedded},
{incl_cond, derived},
{mod_cond, derived},
{excl_archive_filters, [".*"]}, %% Do not archive built libs
{excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)",
"^erts.*/(doc|info|include|lib|man|src)"]},
{excl_app_filters, ["\.gitignore"]},
{app, traffic_light, [{mod_cond, app}, {incl_cond, include}]}
]}.
{target_dir, "traffic_light"}.
{overlay, [
{mkdir, "log/sasl"},
{copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"},
{copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"},
{copy, "files/traffic_light.cmd", "bin/traffic_light.cmd"},
{copy, "files/start_erl.cmd", "bin/start_erl.cmd"},
{copy, "files/install_upgrade.escript", "bin/install_upgrade.escript"},
{template, "files/traffic_light", "bin/traffic_light"},
{template, "files/app.config", "etc/app.config"},
{template, "files/vm.args", "etc/vm.args"}
]}.