You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by se...@apache.org on 2020/11/05 09:55:55 UTC

[bigtop] branch master updated: BIGTOP-3427. Deploying GPDB fails due to the paramiko installation on some distros (addendum). (#690)

This is an automated email from the ASF dual-hosted git repository.

sekikn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new 8225942  BIGTOP-3427. Deploying GPDB fails due to the paramiko installation on some distros (addendum). (#690)
8225942 is described below

commit 8225942c60ed0fa88907d88a2d8a2eff8d1ec279
Author: Kengo Seki <se...@apache.org>
AuthorDate: Thu Nov 5 18:55:42 2020 +0900

    BIGTOP-3427. Deploying GPDB fails due to the paramiko installation on some distros (addendum). (#690)
---
 bigtop-deploy/puppet/modules/gpdb/manifests/init.pp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp b/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
index 5573b9e..4ada967 100644
--- a/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
@@ -163,6 +163,9 @@ class gpdb {
           package { ["libffi-dev"]:
             ensure => latest,
           }
+          package { ["libssl-dev"]:
+            ensure => latest,
+          }
           package { ["python-lockfile"]:
             ensure => latest,
           }
@@ -180,6 +183,7 @@ class gpdb {
             ensure  => latest,
             require => [
               Package["libffi-dev"],
+              Package["libssl-dev"],
               Package["python-lockfile"],
             ],
           }