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

16 lines
413 B
Bash
Executable File

#!/bin/sh
set -eu
for i in $(seq 1 6); do
dbname="peertube_test$i"
dropdb --if-exists "$dbname"
rm -rf "./test$i" "./config/local-test.json" "./config/local-test-$i.json"
createdb -O peertube "$dbname"
psql -c "CREATE EXTENSION pg_trgm;" "$dbname"
psql -c "CREATE EXTENSION unaccent;" "$dbname"
redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
done