30 lines
590 B
Bash
Executable File
30 lines
590 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
|
|
echo "Shutting down and deleting all vagrant vms.."
|
|
|
|
|
|
echo "Stopping router 1.."
|
|
vboxmanage controlvm vague-router1 poweroff
|
|
|
|
echo "Stopping router 2.."
|
|
vboxmanage controlvm vague-router2 poweroff
|
|
|
|
echo "Stopping router 3.."
|
|
vboxmanage controlvm vague-router3 poweroff
|
|
|
|
|
|
echo "Stopping gateway.."
|
|
vboxmanage controlvm vague-gateway poweroff
|
|
|
|
|
|
echo "Stopping client vm.."
|
|
vboxmanage controlvm vague-client poweroff
|
|
|
|
echo "Stopping vpn server vm.."
|
|
vboxmanage controlvm vague-vpn-server poweroff
|
|
|
|
echo "Stopping web server vm.."
|
|
vboxmanage controlvm vague-web-server poweroff
|