From c651274a3db2ef9afd1789025a8690b7c7bcc270 Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 16 May 2019 16:49:52 +1000 Subject: [PATCH] Install redis 2.10.3 This seems to be the only version that works; and is the version on the current ask.o.o server. Ensure it doesn't upgrade to something later. Change-Id: I32a887b014aed376c61ce9f5dcf14668c2d357ce --- manifests/install.pp | 10 ++++++++++ 1 file changed, 10 insertions(+) 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':