Merge "Move redis definition"

This commit is contained in:
Zuul 2019-05-20 05:43:08 +00:00 committed by Gerrit Code Review
commit e263ff92e3
1 changed files with 11 additions and 10 deletions

View File

@ -70,7 +70,18 @@ class askbot::install (
}
if $redis_enabled {
# 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'],
}
python::pip { 'django-redis-cache':
ensure => '1.3.0',
pkgname => 'django-redis-cache',
virtualenv => '/usr/askbot-env',
@ -121,16 +132,6 @@ 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':