Created
October 28, 2013 08:57
-
-
Save mateuszgachowski/7193481 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| running=$(VBoxManage list runningvms | grep -c "PHP virtualbox") | |
| if ((running == 0)) | |
| then | |
| echo 'Starting VirtualBox machine...' | |
| VBoxManage startvm "PHP virtualbox" --type headless | |
| echo '##############################' | |
| echo 'Waiting for the VM to start...' | |
| sleep 10 | |
| echo '##############################' | |
| fi | |
| echo 'Connecting to VM SSH...' | |
| ssh login@domain.com | |
| echo 'VM has been closed.' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment