summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Erik Rediger <badboy@archlinux.us>2014-08-13 19:31:57 +0200
committerJan-Erik Rediger <badboy@archlinux.us>2014-08-13 19:34:03 +0200
commit367035a9838695c1f17a78af0325de5ae6ec08fc (patch)
treebb8e57661e69c3fbed71c81daccab5e757efc545
parent78a012d81a0f487b92b2b79a91de1f28697100e8 (diff)
downloadredis-367035a9838695c1f17a78af0325de5ae6ec08fc.tar.gz
Don't use extended Regexp Syntax
It's not POSIX (BSD systems have -E instead) and we don't actually need it. Closes #1922
-rwxr-xr-xutils/install_server.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/install_server.sh b/utils/install_server.sh
index 15b60a08e..3a5fc3147 100755
--- a/utils/install_server.sh
+++ b/utils/install_server.sh
@@ -135,13 +135,13 @@ fi
echo "## Generated by install_server.sh ##" > $TMP_FILE
read -r SED_EXPR <<-EOF
-s#^port [0-9]{4}\$#port ${REDIS_PORT}#; \
-s#^logfile .+\$#logfile ${REDIS_LOG_FILE}#; \
-s#^dir .+\$#dir ${REDIS_DATA_DIR}#; \
-s#^pidfile .+\$#pidfile ${PIDFILE}#; \
-s#^daemonize no\$#daemonize yes#;
+s#^port .\+#port ${REDIS_PORT}#; \
+s#^logfile .\+#logfile ${REDIS_LOG_FILE}#; \
+s#^dir .\+#dir ${REDIS_DATA_DIR}#; \
+s#^pidfile .\+#pidfile ${PIDFILE}#; \
+s#^daemonize no#daemonize yes#;
EOF
-sed -r "$SED_EXPR" $DEFAULT_CONFIG >> $TMP_FILE
+sed "$SED_EXPR" $DEFAULT_CONFIG >> $TMP_FILE
#cat $TPL_FILE | while read line; do eval "echo \"$line\"" >> $TMP_FILE; done
cp $TMP_FILE $REDIS_CONFIG_FILE || die "Could not write redis config file $REDIS_CONFIG_FILE"