764e2bc101
Create/remove necessary directories in install/deinstall process. Optimize SUB_LIST. PRs: ports/158115, ports/158190 <ChangeLog> * Solved a never reported but possibly critical bug in the AOF and RDB persistence, introduced with the new version of the iterator: In very rare circumstances the AOF (after rerwite) or the rdb file may contain the same key more than one time. </ChangeLog>
18 lines
855 B
Plaintext
18 lines
855 B
Plaintext
bin/redis-benchmark
|
|
bin/redis-check-aof
|
|
bin/redis-check-dump
|
|
bin/redis-cli
|
|
bin/redis-server
|
|
@unexec (cmp -s %D/etc/redis.conf %D/etc/redis.conf.sample && rm -f %D/etc/redis.conf) || true
|
|
etc/redis.conf.sample
|
|
@exec [ -f %B/redis.conf ] || cp %B/%f %B/redis.conf
|
|
@exec [ -d %%REDIS_DBDIR%% ] || mkdir -p %%REDIS_DBDIR%%
|
|
@exec chown %%REDIS_USER%%:%%REDIS_GROUP%% %%REDIS_DBDIR%%
|
|
@unexec if [ -z ${UPGRADE_PORT} ] ; then rmdir %%REDIS_DBDIR%% 2>/dev/null; fi
|
|
@exec [ -d %%REDIS_LOGDIR%% ] || mkdir -p %%REDIS_LOGDIR%%
|
|
@exec chown %%REDIS_USER%%:%%REDIS_GROUP%% %%REDIS_LOGDIR%%
|
|
@unexec if [ -z ${UPGRADE_PORT} ] ; then rmdir %%REDIS_LOGDIR%% 2>/dev/null; fi
|
|
@exec [ -d %%REDIS_RUNDIR%% ] || mkdir -p %%REDIS_RUNDIR%%
|
|
@exec chown %%REDIS_USER%%:%%REDIS_GROUP%% %%REDIS_RUNDIR%%
|
|
@unexec if [ -z ${UPGRADE_PORT} ] ; then rmdir %%REDIS_RUNDIR%% 2>/dev/null; fi
|