Skip to content

Instantly share code, notes, and snippets.

@efischer19
Created March 4, 2016 14:46
Show Gist options
  • Save efischer19/f51623b29845d179ab79 to your computer and use it in GitHub Desktop.
Save efischer19/f51623b29845d179ab79 to your computer and use it in GitHub Desktop.
#!/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