diff options
author | Sridhar Rao <sridhar.rao@spirent.com> | 2021-10-01 02:44:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2021-10-01 02:44:43 +0000 |
commit | 467a22c1c2cbfc3c4a8448b7170d84dc26d658ec (patch) | |
tree | 590f6e7fb7fbbd2c6c0dd7e3fd7864234da3f17c /systems | |
parent | 17e20bfa70d1a9ce5e6ee6687245e3e22f3633a8 (diff) | |
parent | 48f947e94e36e877aa6889e10cda0bbdcd573ef4 (diff) |
Merge "Integrating DPPD-Prox with Vineperf"
Diffstat (limited to 'systems')
-rwxr-xr-x | systems/pythonlibs/add_prox.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/systems/pythonlibs/add_prox.sh b/systems/pythonlibs/add_prox.sh new file mode 100755 index 00000000..36d15ad4 --- /dev/null +++ b/systems/pythonlibs/add_prox.sh @@ -0,0 +1,14 @@ +VINEPERFENV_DIR="$HOME/vsperfenv" + +if [ ! -d "$VINEPERFENV_DIR" ] ; then + echo "Directory $VINEPERFENV_DIR should exists. Please complete normal installation process" + exit +fi + +(source "$VINEPERFENV_DIR"/bin/activate +git clone https://gerrit.opnfv.org/gerrit/samplevnf /tmp/samplevnf +cd /tmp/samplevnf/VNFs/DPPD-PROX/helper-scripts/rapid +python setup.py build +python setup.py install +cp rapid_rsa_key ~/.ssh/ +rm -rf /tmp/samplevnf) |