aboutsummaryrefslogtreecommitdiffstats
path: root/priv/templates/bin.dtl
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2014-03-11 12:26:39 -0500
committerTristan Sloughter <[email protected]>2014-03-11 12:34:27 -0500
commit267b906a9f36ef62f432f225fe1dc58915a64785 (patch)
treee194757cc3a198e0cd67d7a33b48093b91ccf682 /priv/templates/bin.dtl
parent6c962c924086fcfbc8b5e463aa6a50f1521a65f7 (diff)
downloadrelx-267b906a9f36ef62f432f225fe1dc58915a64785.tar.gz
relx-267b906a9f36ef62f432f225fe1dc58915a64785.tar.bz2
relx-267b906a9f36ef62f432f225fe1dc58915a64785.zip
use vm.args in basic bin script
Diffstat (limited to 'priv/templates/bin.dtl')
-rwxr-xr-x[-rw-r--r--]priv/templates/bin.dtl10
1 files changed, 9 insertions, 1 deletions
diff --git a/priv/templates/bin.dtl b/priv/templates/bin.dtl
index 067e9f7..8f8b048 100644..100755
--- a/priv/templates/bin.dtl
+++ b/priv/templates/bin.dtl
@@ -31,8 +31,16 @@ find_sys_config() {
fi
}
+find_vm_args() {
+ local possible_vm_args=$REL_DIR/vm.args
+ if [ -f "$possible_vm_args" ]; then
+ VM_ARGS="-args_file $possible_vm_args"
+ fi
+}
+
find_erts_dir
find_sys_config
+find_vm_args
export ROOTDIR=$RELEASE_ROOT_DIR
export BINDIR=$ERTS_DIR/bin
export EMU=beam
@@ -41,4 +49,4 @@ export LD_LIBRARY_PATH=$ERTS_DIR/lib:$LD_LIBRARY_PATH
cd $ROOTDIR
-$BINDIR/erlexec $ERL_OPTS $SYS_CONFIG -boot $REL_DIR/$REL_NAME $@
+$BINDIR/erlexec $ERL_OPTS $SYS_CONFIG $VM_ARGS -boot $REL_DIR/$REL_NAME $@