diff options
author | Victor Morales <victor.morales@intel.com> | 2018-03-02 13:24:33 -0800 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-03-02 13:39:06 -0800 |
commit | f8730f5f8d0e044fac2f76f465f285736446c5ca (patch) | |
tree | 54346cdc671496edd71b7d72c625a1c51c52fb50 /bootstrap/vagrant-onap/lib/appc | |
parent | eed634e3decd94328291c8623a5e7fd37075eef0 (diff) |
Remove customize src_folder variables
There were some leftovers of variables used for pointing to the
project source code folder. This variables are not used anymore.
Change-Id: I355930f8ce6acbc31a1adca61741d7221dee196c
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: INT-367
Diffstat (limited to 'bootstrap/vagrant-onap/lib/appc')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/appc | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/bootstrap/vagrant-onap/lib/appc b/bootstrap/vagrant-onap/lib/appc index ad01ca53e..95654fc10 100755 --- a/bootstrap/vagrant-onap/lib/appc +++ b/bootstrap/vagrant-onap/lib/appc @@ -6,7 +6,7 @@ source /var/onap/functions # _build_appc_images() - Function that creates APPC images from source code. function _build_appc_images { get_sdnc_images - build_docker_image $appc_src_folder/deployment/installation/appc docker + build_docker_image ${src_folders[appc]}/deployment/installation/appc docker } # get_appc_images() - Function that gets or build APPC docker images @@ -14,17 +14,15 @@ function get_appc_images { if [[ "$build_image" == "True" ]]; then _build_appc_images else - pull_openecomp_image appc-image openecomp/appc-image:latest - pull_openecomp_image dgbuilder-sdnc-image openecomp/dgbuilder-sdnc-image:latest + for image in appc-image dgbuilder-sdnc-image; do + pull_openecomp_image $image openecomp/$image:latest + done fi } # install_appc() - Function that clones and installs the APPC services from source code function install_appc { - pushd $appc_src_folder/deployment/docker-compose - install_docker_compose - /opt/docker/docker-compose up -d - popd + run_docker_compose ${src_folders[appc]}/deployment/docker-compose } # init_appc() - Function that initialize APPC services |