Change-Id: I64df20298a6fef141e90a0c2dd0cd2f1debb3d15 Signed-off-by: sathishkumar_murugesan <sathishcold@gmail.com>
18 lines
328 B
Bash
18 lines
328 B
Bash
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
cd /opt
|
|
#git clone https://github.com/openstack/networking-onos.git
|
|
tar xf networking-onos.tar
|
|
cd networking-onos
|
|
python setup.py install
|
|
rm -rf /opt/networking-onos*
|
|
cd /opt
|
|
|
|
git clone https://github.com/openstack/networking-sfc.git
|
|
cd networking-sfc
|
|
python setup.py install
|
|
rm -rf /opt/networking-sfc*
|
|
|