zgrab2/integration_tests/ntp/cleanup.sh
2018-02-07 12:25:46 -05:00

14 lines
266 B
Bash
Executable File

#!/usr/bin/env bash
set +e
echo "ntp/cleanup: Tests cleanup for ntp"
versions="openntp 4.2.6"
for version in $versions; do
CONTAINER_NAME="zgrab_ntp_$version"
echo "ntp/cleanup: Stopping container $CONTAINER_NAME..."
docker stop $CONTAINER_NAME
done