diff options
author | Noah Slater <nslater@apache.org> | 2009-03-05 18:11:25 +0000 |
---|---|---|
committer | Noah Slater <nslater@apache.org> | 2009-03-05 18:11:25 +0000 |
commit | 85323384336056cd500ac628c5a69d55635b3de6 (patch) | |
tree | 3db960e59f9a325f128008d3c333318f9dca5f02 /bin | |
parent | 65e4d690ebf315e46b05dfd780ccd4c5f45ca355 (diff) |
append instead of truncate for output
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@750531 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bin')
-rw-r--r-- | bin/couchdb.tpl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/couchdb.tpl.in b/bin/couchdb.tpl.in index 709912c7..33761080 100644 --- a/bin/couchdb.tpl.in +++ b/bin/couchdb.tpl.in @@ -207,7 +207,7 @@ start_couchdb () { export HEART_COMMAND export HEART_BEAT_TIMEOUT `eval $command -pidfile $PID_FILE -heart \ - > $STDOUT_FILE 2> $STDERR_FILE` || true + >> $STDOUT_FILE 2>> $STDERR_FILE` || true PID=`_get_pid` if test -n "$PID"; then if kill -0 $PID 2> /dev/null; then |