summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansible.com>2014-03-10 22:23:37 +0100
committerMichael DeHaan <michael@ansible.com>2014-03-10 22:25:11 +0100
commit43203bac5669d4b8cd07bd5f0cf80672fd60907a (patch)
treed05e6afca4cab5898a2b75ab1d3f3ab25053c5fb
parentImplement new default cipher class AES256 (diff)
downloadansible-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.py2
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']