Re: [ansible-devel] Re: Crypto Error On Ansible Playbook Start

2016-10-13 Thread Steven McCord
Interesting for me, as I have this in a Dockerfile to install the dependencies, I found that I need to do a pip install cryptography after I installed the source. I previously had the pip install step prior to the source install from git but once I moved that to after I no longer get this error.

Re: [ansible-devel] Re: Crypto Error On Ansible Playbook Start

2016-10-12 Thread Jon Stanley
On Wed, Oct 12, 2016 at 10:08 AM, Adrian Likins wrote: > To install it: > > 'pip install cryptography' > > > Running in debug mode will show the stack trace (along with lots of other > info): > > 'ANSIBLE_DEBUG=1 ansible-playbook <... your args here ...>' This helped! I'd been r

Re: [ansible-devel] Re: Crypto Error On Ansible Playbook Start

2016-10-12 Thread Adrian Likins
The warning message there is a little vague, especially considering the names involved ('cryptography' and 'Crypto'). The gist is that importing the python 'cryptography' module failed. More than likely because it is not installed. To install it: 'pip install cryptography' Running in d