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