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