Add libffi-dev as a dependency for python-riak

This commit is contained in:
Ciaby 2014-08-23 22:00:05 -05:00
parent 76e7fb8034
commit 0822563fa7

View file

@ -237,6 +237,10 @@ class rhizomatica_base_system {
vmargs_template => 'rhizomatica_base_system/vm.args.erb', vmargs_template => 'rhizomatica_base_system/vm.args.erb',
} }
package { 'libffi-dev':
ensure => installed,
}
#Python modules #Python modules
class { 'python': class { 'python':
version => 'system', version => 'system',
@ -246,6 +250,7 @@ class rhizomatica_base_system {
python::pip { 'riak': python::pip { 'riak':
ensure => present, ensure => present,
require => Package['libffi-dev'],
} }
file { '/usr/lib/python2.7/dist-packages': file { '/usr/lib/python2.7/dist-packages':