fix: [reset_AIL] fix #368

pull/378/head
Terrtia 2019-07-30 15:58:11 +02:00
parent de57f9b9e7
commit 21e099a6d6
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 16 additions and 1 deletions

View File

@ -80,6 +80,20 @@ function soft_reset {
exit
}
function flush_DB_keep_user {
pushd redis/src
./redis-cli -p 6382 -n 1 FLUSHDB;
./redis-cli -p 6382 -n 2 FLUSHDB;
./redis-cli -p 6382 -n 3 FLUSHDB;
./redis-cli -p 6382 -n 4 FLUSHDB;
./redis-cli -p 6382 -n 5 FLUSHDB;
./redis-cli -p 6382 -n 6 FLUSHDB;
./redis-cli -p 6382 -n 7 FLUSHDB;
./redis-cli -p 6382 -n 8 FLUSHDB;
./redis-cli -p 6382 -n 9 FLUSHDB;
popd
}
#If no params,
[[ $@ ]] || {
# Make sure the reseting is intentional
@ -120,7 +134,8 @@ function soft_reset {
while [ "$1" != "" ]; do
case $1 in
--softReset ) soft_reset;
;;
flush_DB_keep_user;
;;
* ) exit 1
esac
shift