1
0
Fork 0
peertube/scripts/clean/server/test.sh

16 lines
413 B
Bash
Raw Normal View History

2018-03-27 08:35:12 +00:00
#!/bin/sh
set -eu
for i in $(seq 1 6); do
2018-07-19 14:17:54 +00:00
dbname="peertube_test$i"
dropdb --if-exists "$dbname"
2018-09-14 07:57:21 +00:00
rm -rf "./test$i" "./config/local-test.json" "./config/local-test-$i.json"
2018-07-19 14:17:54 +00:00
createdb -O peertube "$dbname"
psql -c "CREATE EXTENSION pg_trgm;" "$dbname"
psql -c "CREATE EXTENSION unaccent;" "$dbname"
2018-07-10 15:02:20 +00:00
redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
done