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 3304f65 BIGTOP-3427. Deploying GPDB fails due to the paramiko
installation on some distros. (#688)
3304f65 is described below
commit 3304f65bfa6f841f69a373ee02ef9353a337439b
Author: Kengo Seki <[email protected]>
AuthorDate: Thu Nov 5 08:34:38 2020 +0900
BIGTOP-3427. Deploying GPDB fails due to the paramiko installation on some
distros. (#688)
---
bigtop-deploy/puppet/modules/gpdb/manifests/init.pp | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
b/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
index bdf6d55..5573b9e 100644
--- a/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
+++ b/bigtop-deploy/puppet/modules/gpdb/manifests/init.pp
@@ -121,12 +121,18 @@ class gpdb {
package { ["libffi-devel"]:
ensure => latest,
}
+ package { ["openssl-devel"]:
+ ensure => latest,
+ }
package { ["python2-lockfile"]:
ensure => latest,
}
package { ["gcc"]:
ensure => latest,
}
+ package { ["make"]:
+ ensure => latest,
+ }
package { ["python2-psutil"]:
ensure => latest,
}
@@ -140,6 +146,7 @@ class gpdb {
require => [
Yumrepo["epel"],
Package["libffi-devel"],
+ Package["openssl-devel"],
Package["python2-lockfile"],
],
}