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
diff --git a/bootstrap/vagrant-onap/lib/appc b/bootstrap/vagrant-onap/lib/appc
index ad01ca5..95654fc 100755
--- a/bootstrap/vagrant-onap/lib/appc
+++ b/bootstrap/vagrant-onap/lib/appc
@@ -6,7 +6,7 @@
# _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 @@
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