PeerTube/scripts/clean/server/test.sh

13 lines
307 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
2016-12-11 20:50:51 +00:00
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"
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