diff --git a/manifests/install.pp b/manifests/install.pp index 69346e0..5f5b6a7 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -121,6 +121,16 @@ class askbot::install ( require => Python::Virtualenv['/usr/askbot-env'], } + # This seems to be the only version that works; after this start + # getting errors about CacheKey input types; you can search and find + # this is something to do with redis 3. + python::pip { 'redis': + ensure => '2.10.3', + pkgname => 'redis', + virtualenv => '/usr/askbot-env', + require => Python::Virtualenv['/usr/askbot-env'], + } + include ::httpd::mod::wsgi exec { 'askbot-install':