Add captcha to the askbot venv

Currently I am getting spam from the clean_sessions cron about import
errors because we don't have this library available.

Change-Id: I6e9e18e8b2e6de7bceedfbf261eb73cb46d9e7e8
This commit is contained in:
Spencer Krum 2016-03-05 09:17:07 -08:00
parent 97416de469
commit ec11c36753
1 changed files with 6 additions and 0 deletions

View File

@ -63,6 +63,12 @@ class askbot::install (
}
}
python::pip { 'captcha':
pkgname => 'captcha',
virtualenv => '/usr/askbot-env',
require => Python::Virtualenv['/usr/askbot-env'],
}
if $redis_enabled {
python::pip { 'redis':
ensure => '1.3.0',