Skip to content

Commit

Permalink
Update the message about pycrypto to include that python-devel must b…
Browse files Browse the repository at this point in the history
…e installed.
  • Loading branch information
Michael DeHaan committed Mar 10, 2014
1 parent 2d478b1 commit 43203ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/utils/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
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']
Expand Down

0 comments on commit 43203ba

Please sign in to comment.