2018-03-27 03:35:12 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
2016-04-30 04:17:50 -05:00
|
|
|
|
|
|
|
for i in $(seq 1 6); do
|
2018-07-17 11:17:50 -05:00
|
|
|
dropdb --if-exists "peertube_test$i"
|
2016-04-30 04:17:50 -05:00
|
|
|
rm -rf "./test$i"
|
2018-01-17 03:32:03 -06:00
|
|
|
rm -f "./config/local-test.json"
|
|
|
|
rm -f "./config/local-test-$i.json"
|
2018-04-04 01:57:37 -05:00
|
|
|
createdb -O peertube "peertube_test$i"
|
2018-07-10 10:02:20 -05:00
|
|
|
redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
|
2016-04-30 04:17:50 -05:00
|
|
|
done
|