BIGTOP-2325. Deployment recipes for HAWQ Getting rid of pycrypto install. It doesn't work anymore....
Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/94791dc8 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/94791dc8 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/94791dc8 Branch: refs/heads/BIGTOP-2320 Commit: 94791dc8ceda738fe68c0d2d7c5d47519e83a53d Parents: b2508fb Author: Cos <[email protected]> Authored: Wed Mar 16 21:45:11 2016 -0500 Committer: Cos <[email protected]> Committed: Wed Mar 16 21:45:11 2016 -0500 ---------------------------------------------------------------------- bigtop-deploy/puppet/modules/hawq/manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/94791dc8/bigtop-deploy/puppet/modules/hawq/manifests/init.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/modules/hawq/manifests/init.pp b/bigtop-deploy/puppet/modules/hawq/manifests/init.pp index 1c499ab..3d3d207 100644 --- a/bigtop-deploy/puppet/modules/hawq/manifests/init.pp +++ b/bigtop-deploy/puppet/modules/hawq/manifests/init.pp @@ -84,7 +84,7 @@ class hawq { exec { "install pygresql modules1": path => ['/usr/bin'], - command => 'pip --retries=50 --timeout=300 install pg8000 simplejson unittest2 pycrypto pygresql pyyaml lockfile paramiko psi', + command => 'pip --retries=50 --timeout=300 install pg8000 simplejson unittest2 pygresql pyyaml lockfile paramiko psi', require => [ Package['python-pip', 'postgresql-devel'] ], } exec { "install pygresql modules2": @@ -118,7 +118,7 @@ class hawq { exec { "hawk init master": path => ['/usr/bin', '/usr/lib/hawq/bin/lib'], # Silly init will ask if I am really sure I want to init the cluster - command => 'bash -x run-init.sh master', + command => 'bash -x run-init.sh master $GPHOME', require => [ Package['hawq'], Exec ['sysctl reset', 'install pygresql modules2'] ], }
