036cf9d9c5
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
11 lines
276 B
Bash
Executable File
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"
|
|
|
|
|