summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorThePicard <superrikku@gmail.com>2012-03-31 23:39:58 -0700
committerantirez <antirez@gmail.com>2012-04-01 10:15:38 +0200
commitf08aa2bf48883fa3c00266229f17efe4af201078 (patch)
tree9b7608f7805a5e1609ae1b459880da7ca5eafd1f /utils
parentfa34ba39084255aeb0646a75c114c1f2e626e5c3 (diff)
downloadredis-f08aa2bf48883fa3c00266229f17efe4af201078.tar.gz
Fixed a typo in install_server.sh
Diffstat (limited to 'utils')
-rwxr-xr-xutils/install_server.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/install_server.sh b/utils/install_server.sh
index 06570a87f..93b5b411b 100755
--- a/utils/install_server.sh
+++ b/utils/install_server.sh
@@ -166,7 +166,7 @@ if [[ ! `which chkconfig` ]] ; then
else
# we're chkconfig, so lets add to chkconfig and put in runlevel 345
chkconfig --add redis_$REDIS_PORT && echo "Successfully added to chkconfig!"
- chkconfig--level 345 redis_$REDIS_PORT on && echo "Successfully added to runlevels 345!"
+ chkconfig --level 345 redis_$REDIS_PORT on && echo "Successfully added to runlevels 345!"
fi
/etc/init.d/redis_$REDIS_PORT start || die "Failed starting service..."