diff options
author | Ryan Tilder <rtilder@basho.com> | 2010-06-23 14:54:36 -0700 |
---|---|---|
committer | Ryan Tilder <rtilder@basho.com> | 2010-06-23 14:54:36 -0700 |
commit | 0df95cc7f29889cfd0dca20c2ec83f2fef71b9b3 (patch) | |
tree | ac354fbf48c0d27c37b4b79a8e23a7b58b73277f /priv | |
parent | 8ebbffafe60a7a48227d55f95afbc4f3049d2339 (diff) |
The trailing slash is important enough to put it here directly since when it's
missing from the PIPE_DIR definition above, the application won't start and
doesn't log any thing to the expected locations.
Diffstat (limited to 'priv')
-rwxr-xr-x | priv/templates/simplenode.runner | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/priv/templates/simplenode.runner b/priv/templates/simplenode.runner index 70f4584..67b9f9e 100755 --- a/priv/templates/simplenode.runner +++ b/priv/templates/simplenode.runner @@ -58,7 +58,8 @@ case "$1" in fi export HEART_COMMAND="$RUNNER_BASE_DIR/bin/$SCRIPT start" mkdir -p $PIPE_DIR - $ERTS_PATH/run_erl -daemon $PIPE_DIR $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console" 2>&1 + # Note the trailing slash on $PIPE_DIR/ + $ERTS_PATH/run_erl -daemon $PIPE_DIR/ $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console" 2>&1 ;; stop) |