From dd074806ad51761392a9cca3f1f04fbbebd3de22 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 26 Jul 2017 16:06:35 -0500 Subject: Sync latest changes for vagrant-onap Given some internal procedures was not possible to submit all the changes. In the meantime, those changes were placed into an non-official project. This change syncronizes the latest changes into the official repository. Issue-id: INT-17 Change-Id: Ia4125f4b70273401e4ed3cc1908d2e2ad7d1c2e9 Signed-off-by: Victor Morales --- bootstrap/vagrant-onap/lib/vfc | 58 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100755 bootstrap/vagrant-onap/lib/vfc (limited to 'bootstrap/vagrant-onap/lib/vfc') diff --git a/bootstrap/vagrant-onap/lib/vfc b/bootstrap/vagrant-onap/lib/vfc new file mode 100755 index 000000000..44e433d35 --- /dev/null +++ b/bootstrap/vagrant-onap/lib/vfc @@ -0,0 +1,58 @@ +#!/bin/bash + +set -o xtrace + +source /var/onap/functions +rc_folder=$git_src_folder/vfc + +vfc_repos=("gvnfm/vnflcm" "gvnfm/vnfmgr" "gvnfm/vnfres" "nfvo/catalog" "nfvo/driver/ems" "nfvo/driver/sfc" \ + "nfvo/driver/vnfm/gvnfm" "nfvo/driver/vnfm/svnfm" "nfvo/lcm" "nfvo/resmanagement" "nfvo/wfengine") + +# clone_all_vfc_repos() - Function that clones VF-C source repo. +function clone_all_vfc_repos { + for dirc in ${vfc_repos[@]}; do + clone_repo vfc/$dirc $src_folder/$dirc + done +} + +# compile_all_vfc_repos() - Function that compiles VF-C source repo. +function compile_all_vfc_repos { + pushd $src_folder/gvnfm/vnflcm/lcm + tox -e py27 + popd + + # TODO(sshank): Add compile for other vfc_repos. (Both Java and Python based.) + # Python based: + # gvnfm/vnflcm/lcm + # gvnfm/vnfmgr/mgr + # gvnfm/vnfres/res + # nfvo/driver/vnfm/gvnfm/gvnfmadapter + # nfvo/driver/vnfm/svnfm/zte/vmanager + # nfvo/lcm + + # Java based: + # nfvo/catalog + # nfvo/driver/ems/ems/sems/boco/ems-driver + # nfvo/driver/sfc/zte/sfc-driver + # nfvo/driver/vnfm/gvnfm/juju/juju-vnfmadapter + # nfvo/driver/vnfm/svnfm/huawei/vnfmadapter + # nfvo/resmanagement + # nfvo/wfengine +} + +# install_vfc() - Download and install vfc service from source code +function install_vfc { + clone_all_vfc_repos + if [[ "$compile_repo" == "False" ]]; then + compile_all_vfc_repos + fi + + # TODO(sshank): Add further installation steps if necessary. +} + +# init_vfc() - Function that initialize VF-C services +function init_vfc { + install_python + install_package libmysqlclient-dev + install_vfc +} -- cgit 1.2.3-korg