rc.d leaves stderr open causing controlling programs to share
-------------------------------------------------------------
Key: COUCHDB-443
URL: https://issues.apache.org/jira/browse/COUCHDB-443
Project: CouchDB
Issue Type: Bug
Environment: linux/debian/lenny
Reporter: Sig L
The fix to keep this from hanging chef-client:
testchef:~# diff couchdb.orig couchdb
88c88
< if su $COUCHDB_USER -c "$command" > /dev/null ; then
---
> if su $COUCHDB_USER -c "$command" > /dev/null 2>&1 ; then
94c94
< if $command > /dev/null ; then
---
> if $command > /dev/null 2>&1 ; then
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.