diff options
author | Salvatore Sanfilippo <antirez@gmail.com> | 2012-05-04 04:41:02 -0700 |
---|---|---|
committer | Salvatore Sanfilippo <antirez@gmail.com> | 2012-05-04 04:41:02 -0700 |
commit | abf54ee73c9dcfa26a1caefcb51cd0b0ee9b3afd (patch) | |
tree | e30b97dfc2ad23c6f5b72aef3a9155a6e9eb8d90 /utils | |
parent | af3853c3bf6cbb4f4b75afbc56dc2ba0c17c4d5e (diff) | |
parent | c4286feabef25b417d05251e4a63ef769ac4cfad (diff) | |
download | redis-abf54ee73c9dcfa26a1caefcb51cd0b0ee9b3afd.tar.gz |
Merge pull request #494 from quiver/init-fixes
fix several bugs of init.d scripts
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/redis_init_script.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/redis_init_script.tpl b/utils/redis_init_script.tpl index e0c5b2f88..e2af1fe77 100755 --- a/utils/redis_init_script.tpl +++ b/utils/redis_init_script.tpl @@ -1,7 +1,7 @@ case "$1" in start) - if [ -f $$PIDFILE ] + if [ -f $PIDFILE ] then echo "$PIDFILE exists, process is already running or crashed" else |