forked from emqx/emqx-rel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelx.config
93 lines (84 loc) · 2.27 KB
/
relx.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
%% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*-
{release, {emqx, "3.0"}, [
kernel,
sasl,
crypto,
public_key,
asn1,
syntax_tools,
ssl,
xmerl,
os_mon,
inets,
compiler,
runtime_tools,
{observer, load},
gproc,
luerl,
esockd,
clique,
cuttlefish,
jsx,
cowboy,
pbkdf2,
bcrypt,
emqx,
{mnesia, load},
{ekka, load},
{emqx_sn, load},
{emqx_coap, load},
{emqx_lwm2m, load},
{emqx_recon, load},
{emqx_stomp, load},
{emqx_statsd, load},
{emqx_management, load},
{emqx_retainer, load},
{emqx_reloader, load},
{emqx_dashboard, load},
{emqx_delayed_publish, load},
{emqx_web_hook, load},
{emqx_lua_hook, load},
{emqx_auth_clientid, load},
{emqx_auth_username, load},
{emqx_auth_ldap, load},
{emqx_auth_http, load},
{emqx_auth_mongo, load},
{emqx_auth_mysql, load},
{emqx_auth_pgsql, load},
{emqx_auth_redis, load},
{emqx_auth_jwt, load},
{emqx_plugin_template, load}
]}.
{include_src, false}.
{extended_start_script, false}.
{generate_start_script, false}.
{sys_config, false}.
{vm_args, false}.
{overlay_vars, "vars.config"}.
{overlay, [
{mkdir, "etc/"},
{mkdir, "log/"},
{mkdir, "data/"},
{mkdir, "data/mnesia"},
{mkdir, "data/configs"},
{mkdir, "hook_lua"},
{template, "bin/emqx_env", "bin/emqx_env"},
{template, "bin/emqx", "bin/emqx"},
{template, "bin/emqx_ctl", "bin/emqx_ctl"},
{template, "bin/emqx.cmd", "bin/emqx.cmd"},
{template, "bin/emqx_ctl.cmd", "bin/emqx_ctl.cmd"},
{copy, "rel/conf/plugins", "etc/"},
{copy, "deps/emqx/etc/certs", "etc/"},
{template, "rel/conf/emqx.conf", "etc/emqx.conf"},
{template, "rel/conf/vm.args", "etc/vm.args"},
{template, "rel/conf/ssl_dist.conf", "etc/ssl_dist.conf"},
{template, "rel/conf/plugins/emqx_coap.conf", "etc/plugins/emqx_coap.conf"},
{template, "rel/conf/plugins/emqx_lwm2m.conf", "etc/plugins/emqx_lwm2m.conf"},
{copy, "rel/conf/acl.conf", "etc/acl.conf"},
{copy, "data/loaded_plugins", "data/loaded_plugins"},
{copy, "bin/nodetool", "bin/nodetool"},
{copy, "rel/schema", "releases/\{\{rel_vsn\}\}/"},
{copy, "bin/install_upgrade_escript", "bin/install_upgrade_escript"},
{copy, "deps/cuttlefish/cuttlefish", "bin/"},
{copy, "deps/emqx_lwm2m/lwm2m_xml", "etc/"}
]}.