This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DLAB-1966 in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
commit 37b4315c7ed1545ee1ed7c1d709823dfe1936a35 Author: leonidfrolov <[email protected]> AuthorDate: Wed Jul 29 16:03:20 2020 +0300 [DLAB-1966]: added additional package installation for gcp --- .../src/general/scripts/os/install_additional_libs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure-provisioning/src/general/scripts/os/install_additional_libs.py b/infrastructure-provisioning/src/general/scripts/os/install_additional_libs.py index dc8a804..c57b2c9 100644 --- a/infrastructure-provisioning/src/general/scripts/os/install_additional_libs.py +++ b/infrastructure-provisioning/src/general/scripts/os/install_additional_libs.py @@ -119,7 +119,8 @@ if __name__ == "__main__": if os.environ['conf_cloud_provider'] in ('aws'): manage_pkg('-y install', 'remote', 'libcurl libcurl-devel') elif os.environ['conf_cloud_provider'] in ('gcp'): - manage_pkg('-y install', 'remote', 'libcurl4-gnutls-dev') + manage_pkg('-y build-dep', 'remote', 'libcurl4-gnutls-dev libxml2-dev') + manage_pkg('-y install', 'remote', 'libcurl4-gnutls-dev libxml2-dev') sudo('R -e "install.packages(\'devtools\', repos = \'https://cloud.r-project.org\')"') status = install_r_pkg(pkgs['libraries']['r_pkg']) general_status = general_status + status --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
