Created
March 4, 2016 14:46
-
-
Save efischer19/f51623b29845d179ab79 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 | |
echo 'Before running this command, ensure there are no running processes using port 8000' | |
echo 'If a process appears in the following command, quit this script and kill that, then run script again' | |
echo 'sudo lsof -i :8000' | |
sudo lsof -i :8000 | |
rm -rf ../devstack | |
mkdir ../devstack | |
curl -L https://raw.githubusercontent.com/edx/configuration/master/vagrant/release/devstack/Vagrantfile > Vagrantfile | |
cp VagrantFile ../devstack | |
cd ../devstack | |
vagrant plugin install vagrant-vbguest | |
vagrant up | |
cd ../scripts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment