diff options
Diffstat (limited to 'priv/templates/simplenode.reltool.config')
-rw-r--r-- | priv/templates/simplenode.reltool.config | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/priv/templates/simplenode.reltool.config b/priv/templates/simplenode.reltool.config index 4248b9c..dc247cd 100644 --- a/priv/templates/simplenode.reltool.config +++ b/priv/templates/simplenode.reltool.config @@ -13,8 +13,15 @@ ]}, {boot_rel, "{{nodeid}}"}, {profile, embedded}, + {excl_archive_filters, [".*"]}, %% Do not archive built libs {excl_sys_filters, ["^bin/.*", "^erts.*/bin/(dialyzer|typer)"]}, + + %% Including HiPE can cause issues generating your first upgrade. + %% If you plan to distribute HiPE in your release remove the + %% following line. + {app, hipe, [{incl_cond, exclude}]}, + {app, sasl, [{incl_cond, include}]} ]}. @@ -25,8 +32,8 @@ {copy, "files/erl", "\{\{erts_vsn\}\}/bin/erl"}, {copy, "files/nodetool", "\{\{erts_vsn\}\}/bin/nodetool"}, {copy, "files/{{nodeid}}", "bin/{{nodeid}}"}, + {copy, "files/sys.config", "releases/\{\{rel_vsn\}\}/sys.config"}, {copy, "files/{{nodeid}}.cmd", "bin/{{nodeid}}.cmd"}, {copy, "files/start_erl.cmd", "bin/start_erl.cmd"}, - {copy, "files/app.config", "etc/app.config"}, - {copy, "files/vm.args", "etc/vm.args"} + {copy, "files/vm.args", "releases/\{\{rel_vsn\}\}/vm.args"} ]}. |