aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/clean/server/test.sh
blob: 42651d3a8291da65069e3b582db6e6e4436e918a (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 --if-exists "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