summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/couchdb.tpl.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/couchdb.tpl.in b/bin/couchdb.tpl.in
index efe3a7fc..f580f076 100644
--- a/bin/couchdb.tpl.in
+++ b/bin/couchdb.tpl.in
@@ -140,15 +140,15 @@ check_environment () {
exit $SCRIPT_ERROR
fi
message_prefix="Apache CouchDB needs a regular"
- if `echo 2> /dev/null >> $PID_FILE; echo $?` -gt 0; then
+ if test `echo 2> /dev/null >> $PID_FILE; echo $?` -gt 0; then
echo "$message_prefix PID file: $PID_FILE" >&2
exit $SCRIPT_ERROR
fi
- if `echo 2> /dev/null >> $STDOUT_FILE; echo $?` -gt 0; then
+ if test `echo 2> /dev/null >> $STDOUT_FILE; echo $?` -gt 0; then
echo "$message_prefix STDOUT file: $STDOUT_FILE" >&2
exit $SCRIPT_ERROR
fi
- if `echo 2> /dev/null >> $STDERR_FILE; echo $?` -gt 0; then
+ if test `echo 2> /dev/null >> $STDERR_FILE; echo $?` -gt 0; then
echo "$message_prefix STDERR file: $STDERR_FILE" >&2
exit $SCRIPT_ERROR
fi