When trying to run the easy install wizard for develop (on a vanilla Debian 8 machine)
$ python install.py --develop
it fails with
ERROR! Unexpected Exception, this is probably a bug: 'module' object has no attribute 'SSL_ST_INIT'
to see the full traceback, use -vvv
Traceback (most recent call last):
File "install.py", line 417, in <module>
install_bench(args)
File "install.py", line 100, in install_bench
run_playbook('create_user.yml', extra_vars=extra_vars)
File "install.py", line 338, in run_playbook
success = subprocess.check_call(args, cwd=os.path.join(cwd, 'playbooks'))
File "/usr/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ansible-playbook', '-c', 'local', 'create_user.yml', '-e', '@/tmp/extra_vars.json']' returned non-zero exit status 250
Note: it affects --production too.
Does anyone else have the same issue?