diff options
author | Michael DeHaan <michael@ansible.com> | 2014-03-10 22:23:37 +0100 |
---|---|---|
committer | Michael DeHaan <michael@ansible.com> | 2014-03-10 22:25:11 +0100 |
commit | 43203bac5669d4b8cd07bd5f0cf80672fd60907a (patch) | |
tree | d05e6afca4cab5898a2b75ab1d3f3ab25053c5fb | |
parent | Implement new default cipher class AES256 (diff) | |
download | ansible-43203bac5669d4b8cd07bd5f0cf80672fd60907a.tar.xz ansible-43203bac5669d4b8cd07bd5f0cf80672fd60907a.zip |
Update the message about pycrypto to include that python-devel must be installed.
-rw-r--r-- | lib/ansible/utils/vault.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/utils/vault.py b/lib/ansible/utils/vault.py index 169dc8333b..118f579005 100644 --- a/lib/ansible/utils/vault.py +++ b/lib/ansible/utils/vault.py @@ -53,7 +53,7 @@ try: except ImportError: HAS_AES = False -CRYPTO_UPGRADE = "ansible-vault requires a newer version of pycrypto than the one installed on your platform. You may fix this with OS-specific commands such as: rpm -e --nodeps python-crypto; pip install pycrypto" +CRYPTO_UPGRADE = "ansible-vault requires a newer version of pycrypto than the one installed on your platform. You may fix this with OS-specific commands such as: yum install python-devel; rpm -e --nodeps python-crypto; pip install pycrypto" HEADER='$ANSIBLE_VAULT' CIPHER_WHITELIST=['AES', 'AES256'] |