kuryr/contrib/vagrant/install_kuryr.sh
Vikas Choudhary 036cf9d9c5 Add files to enable demo kuryr setup using Vagrant
These changes will help developers to quickly setup kuryr along with
docker, keystone and neutron using vagrantfile. Complete steps are
mentioned in ReadMe.

Change-Id: Ia2e16c13a9ae0a6c59991d205f055e3ae8b7b33f
Closes-Bug: #1504018
2015-10-08 20:40:00 +05:30

11 lines
276 B
Bash
Executable File

#!/bin/sh
echo "running apt-get install python-pip"
sudo apt-get install -qqy python-pip
echo "running git clone kuryr"
su "$OS_USER" -c "cd ~ && git clone -b master https://github.com/openstack/kuryr"
su "$OS_USER" -c "cd ~/kuryr && sudo pip install -r requirements.txt"