X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/78f56a5aeed01022912b117864b8acf4e6411c58..2ebd2720b37dcca3b6e0c18377bd69e9eaf541fc:/utils/install_server.sh?ds=sidebyside diff --git a/utils/install_server.sh b/utils/install_server.sh index 71c57d70..eedd8034 100755 --- a/utils/install_server.sh +++ b/utils/install_server.sh @@ -99,11 +99,15 @@ if [ ! -f "$REDIS_EXECUTABLE" ] ; then fi + #render the tmplates TMP_FILE="/tmp/$REDIS_PORT.conf" TPL_FILE="./redis.conf.tpl" INIT_TPL_FILE="./redis_init_script.tpl" INIT_SCRIPT_DEST="/etc/init.d/redis_$REDIS_PORT" +PIDFILE="/var/run/redis_$REDIS_PORT.pid" + + #check the default for redis cli CLI_EXEC=`which redis-cli` @@ -126,8 +130,9 @@ REDIS_INIT_HEADER=\ #Configurations injected by install_server below....\n\n EXEC=$REDIS_EXECUTABLE\n CLIEXEC=$CLI_EXEC\n -PIDFILE=/var/run/redis_${REDIS_PORT}.pid\n +PIDFILE=$PIDFILE\n CONF=\"$REDIS_CONFIG_FILE\"\n\n +REDISPORT=\"$REDIS_PORT\"\n\n ###############\n\n" #combine the header and the template (which is actually a static footer)