aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/clean/server/test.sh
blob: 3b8fe39edee1222897581fb1537c533eeab4fd68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -eu

for i in $(seq 1 6); do
  dbname="peertube_test$i"

  dropdb --if-exists "$dbname"
  rm -rf "./test$i"
  rm -f "./config/local-test.json"
  rm -f "./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