diff options
author | Victor Morales <victor.morales@intel.com> | 2017-07-31 18:40:39 -0500 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2017-07-31 18:40:39 -0500 |
commit | 455beceeac70836e49b41f85e9399037e0255751 (patch) | |
tree | c4940b2777e7cd064d1b5a6b0f230d4053da83e5 /bootstrap/vagrant-onap/lib/functions | |
parent | f48e43230eeaa5dc19ce5ec914bb8216922fc7cc (diff) |
Update AAI setup
This change includes instructions to setup a development
environment for a AAI project provided in the wiki entry:
* https://wiki.onap.org/pages/viewpage.action?pageId=10782088
Change-Id: I1e60d6cc1d2fd12c56990aded6f385f11dca5b9c
Signed-off-by: Victor Morales <victor.morales@intel.com>
Diffstat (limited to 'bootstrap/vagrant-onap/lib/functions')
-rwxr-xr-x | bootstrap/vagrant-onap/lib/functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/vagrant-onap/lib/functions b/bootstrap/vagrant-onap/lib/functions index a2bb98e29..7e6ff2e98 100755 --- a/bootstrap/vagrant-onap/lib/functions +++ b/bootstrap/vagrant-onap/lib/functions @@ -62,8 +62,6 @@ function clone_repo { function install_dev_tools { install_package apt-transport-https install_package ca-certificates - # ca-certificates-java is not a dependency in the Oracle JDK/JRE so this must be explicitly installed. - /var/lib/dpkg/info/ca-certificates-java.postinst configure install_package curl } @@ -78,6 +76,8 @@ function install_java { install_package software-properties-common add-apt-repository -y ppa:openjdk-r/ppa install_package openjdk-8-jdk + # ca-certificates-java is not a dependency in the Oracle JDK/JRE so this must be explicitly installed. + /var/lib/dpkg/info/ca-certificates-java.postinst configure } # install_maven() - Install maven binaries |