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

set -eu

for i in $(seq 1 6); do
  dropdb "peertube_test$i"
  rm -rf "./test$i"
  rm -f "./config/local-test.json"
  rm -f "./config/local-test-$i.json"
  createdb -O peertube "peertube_test$i"
  redis-cli KEYS "bull-localhost:900$i*" | grep -v empty | xargs --no-run-if-empty redis-cli DEL
done