You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
544 B

#!/bin/bash
#
echo "Shutting down and deleting all vagrant vms.."
echo "Destroying router 1.."
cd routers/router1
vagrant destroy -f
echo "Destroying router 2.."
cd ../router2
vagrant destroy -f
echo "Destroying router 3.."
cd ../router3
vagrant destroy -f
echo "Destroying gateway.."
cd ../gateway
vagrant destroy -f
cd ../..
echo "Destroying client vm.."
cd edgers/client
vagrant destroy -f
echo "Destroying vpn server vm.."
cd ../vpn-server
vagrant destroy -f
echo "Destroying web server vm.."
cd ../web-server
vagrant destroy -f