Skip to content

Commit

Permalink
Merge pull request #102 from tuncer/noderunner
Browse files Browse the repository at this point in the history
Sync noderunner script with rebar template
  • Loading branch information
vinoski committed Apr 4, 2012
2 parents 1e103e9 + ced8e45 commit 43bd8ab
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions rel/files/yaws
Expand Up @@ -72,11 +72,12 @@ case "$1" in
echo "Node is already running!"
exit 1
fi
HEART_COMMAND="$RUNNER_BASE_DIR/bin/$SCRIPT start"
shift # remove $1
RUN_PARAM=$(printf "\'%s\' " "$@")
HEART_COMMAND="$RUNNER_BASE_DIR/bin/$SCRIPT start $RUN_PARAM"
export HEART_COMMAND
mkdir -p $PIPE_DIR
shift # remove $1
$ERTS_PATH/run_erl -daemon $PIPE_DIR $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console $@" 2>&1
$ERTS_PATH/run_erl -daemon $PIPE_DIR $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console $RUN_PARAM" 2>&1
;;

stop)
Expand Down Expand Up @@ -160,21 +161,21 @@ case "$1" in
BINDIR=$ROOTDIR/erts-$ERTS_VSN/bin
EMU=beam
PROGNAME=`echo $0 | sed 's/.*\\///'`
CMD="$BINDIR/erlexec -boot $RUNNER_BASE_DIR/releases/$APP_VSN/$BOOTFILE -mode embedded -config $CONFIG_PATH -args_file $VMARGS_PATH -- ${1+"$@"}"
CMD="$BINDIR/erlexec -boot $RUNNER_BASE_DIR/releases/$APP_VSN/$BOOTFILE -mode embedded -config $CONFIG_PATH -args_file $VMARGS_PATH"
export EMU
export ROOTDIR
export BINDIR
export PROGNAME

# Dump environment info for logging purposes
echo "Exec: $CMD"
echo "Exec: $CMD" -- ${1+"$@"}
echo "Root: $ROOTDIR"

# Log the startup
logger -t "$SCRIPT[$$]" "Starting up"

# Start the VM
exec $CMD
exec $CMD -- ${1+"$@"}
;;

*)
Expand Down

0 comments on commit 43bd8ab

Please sign in to comment.