about summary refs log tree commit diff
path: root/src/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.go')
-rw-r--r--src/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.go b/src/main.go
index 4833896..574d156 100644
--- a/src/main.go
+++ b/src/main.go
@@ -55,9 +55,10 @@ func cleanup(signalChannel chan os.Signal, server http.Server) {
 	server.Close()
 	log.Println("Stopping VPN container")
 	stopVPN()
+	log.Println("Stopping challenge containers")
+	stopAllChallengeContainers()
 	log.Println("Deleting Docker networks")
 	deleteNetwork(vpnHostNetworkName)
 	deleteNetwork(containerNetworkName)
-	// TODO: stop challenge containers
 	os.Exit(0)
 }