zgrab2/integration_tests/redis/cleanup.sh
2018-02-13 13:25:47 -05:00

13 lines
213 B
Bash
Executable File

#!/usr/bin/env bash
set +e
echo "redis/cleanup: Tests cleanup for redis"
configs="default password renamed"
for cfg in $configs; do
CONTAINER_NAME="zgrab_redis_${cfg}"
docker stop $CONTAINER_NAME
done