From 2e206a9524c67a83941ad6ba95b4f909550af43a Mon Sep 17 00:00:00 2001 From: Noah Slater Date: Tue, 24 Mar 2009 13:04:46 +0000 Subject: [PATCH] corrected usage of test in couchdb script git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@757772 13f79535-47bb-0310-9956-ffa450edef68 --- bin/couchdb.tpl.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/couchdb.tpl.in b/bin/couchdb.tpl.in index efe3a7fce..f580f0760 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