From: Salvatore Sanfilippo Date: Sun, 1 Apr 2012 08:14:52 +0000 (-0700) Subject: Merge pull request #425 from ThePicard/unstable X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/a7138a4cf8301c1eab82d5881aa831ed38d4028c?hp=609ea08445569e5d3e50d37c515d88e6a76c6974 Merge pull request #425 from ThePicard/unstable chkconfig in install_server.sh doesn't work because of a typo --- diff --git a/utils/install_server.sh b/utils/install_server.sh index 06570a87..93b5b411 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..."