| rel(4) | Erlang Module Definition | rel(4) |
NAME
rel - Release resource file
DESCRIPTION
The release resource file specifies which applications are included in a release (system) based on Erlang/OTP.
This file is used by the functions in systools when generating start scripts (.script, .boot) and release upgrade files (relup).
File Syntax
The release resource file is to be called Name.rel.
The .rel file contains one single Erlang term, which is called a release specification. The file has the following syntax:
-
{release, {RelName,Vsn}, {erts, EVsn}, [{Application, AppVsn} | {Application, AppVsn, Type} | {Application, AppVsn, IncApps} | {Application, AppVsn, Type, IncApps}]}.RelName = string()
Vsn = string()
EVsn = string()
Application = atom()
AppVsn = string()
Type = permanent | transient | temporary | load | none
If Type = permanent | transient | temporary, the application is loaded and started in the corresponding way, see application.
If Type = load, the application is only loaded.
If Type = none, the application is not loaded and not started, although the code for its modules is loaded.
Defaults to permanent
IncApps = [atom()]
NOTE: The list of applications must contain the Kernel and STDLIB applications.
See Also
application, relup(4), systools
| sasl 4.3 | Ericsson AB |