diff options
author | Håkan Mattsson <[email protected]> | 2010-03-23 16:50:50 +0100 |
---|---|---|
committer | Håkan Mattsson <[email protected]> | 2010-04-19 13:17:33 +0200 |
commit | 534f334247163035b477293e74b78823f2d9b7f3 (patch) | |
tree | 10fba9717bb98da3212ee630ad4e63dd9fa60b86 /lib/reltool/doc | |
parent | 5217fb3d0816aa241d228f7ef14fb54f6a14a8f8 (diff) | |
download | otp-534f334247163035b477293e74b78823f2d9b7f3.tar.gz otp-534f334247163035b477293e74b78823f2d9b7f3.tar.bz2 otp-534f334247163035b477293e74b78823f2d9b7f3.zip |
Automatically include applications that must be started
Applications that are required to be started
before other applications according to their
app-file are now automatically included in
the release. The kernel and stdlib applications
are automatically included.
Diffstat (limited to 'lib/reltool/doc')
-rw-r--r-- | lib/reltool/doc/src/reltool_examples.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/doc/src/reltool_examples.xml b/lib/reltool/doc/src/reltool_examples.xml index d6db246f6c..bce9413b52 100644 --- a/lib/reltool/doc/src/reltool_examples.xml +++ b/lib/reltool/doc/src/reltool_examples.xml @@ -249,11 +249,11 @@ Eshell V5.7.3 (abort with ^G) <pre> 5> {ok, Server} = reltool:start_server([{config, {sys, [{boot_rel, "NAME"}, {rel, "NAME", "VSN", - [kernel, stdlib, sasl]}]}}]). + [sasl]}]}}]). {ok,<0.1288.0>} 6> reltool:get_config(Server). {ok,{sys,[{boot_rel,"NAME"}, - {rel,"NAME","VSN",[kernel,stdlib,sasl]}]}} + {rel,"NAME","VSN",[sasl]}]}} 7> reltool:get_rel(Server, "NAME"). {ok,{release,{"NAME","VSN"}, {erts,"5.7"}, |