aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-28 17:48:18 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-28 17:48:18 +0000
commit21b7c333a99a905fddcac5ad38958163cc4f3cf3 (patch)
treef7aaf6897dfec6df818e4513212b76d413633f24 /contrib
parent70ae763a2de2e0879cad30c4ec18aaa8c931859d (diff)
Bug 6815 - Adding quotes to make bash happy
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@15615 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/init.d/rc.redhat.asterisk4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/init.d/rc.redhat.asterisk b/contrib/init.d/rc.redhat.asterisk
index 615ec2746..32dc8e0c6 100755
--- a/contrib/init.d/rc.redhat.asterisk
+++ b/contrib/init.d/rc.redhat.asterisk
@@ -43,7 +43,7 @@ if ! [ -x $AST_SBIN/asterisk ] ; then
fi
if ! [ -d $AST_CONFIG ] ; then
- echo "ERROR: /etc/asterisk directory not found"
+ echo "ERROR: $AST_CONFIG directory not found"
exit 0
fi
@@ -58,7 +58,7 @@ SAFE_ASTERISK=$AST_SBIN/safe_asterisk
# Allow configuration overrides in /etc/sysconfig/asterisk
CONFIG0=`readlink $0`
-if [ $CONFIG0 = "" ]; then
+if [ "$CONFIG0" = "" ]; then
CONFIGFILE=/etc/sysconfig/`basename $0`
else
CONFIGFILE=/etc/sysconfig/`basename $CONFIG0`