use print function (#34013)

pull/34019/merge
aaron jheng 7 years ago committed by Matt Martz
parent a73af903b8
commit 378636078a

@ -298,7 +298,7 @@ Once the library is ready, SHA512 password values can then be generated as follo
.. code-block:: shell-session
python -c "from passlib.hash import sha512_crypt; import getpass; print sha512_crypt.using(rounds=5000).hash(getpass.getpass())"
python -c "from passlib.hash import sha512_crypt; import getpass; print(sha512_crypt.using(rounds=5000).hash(getpass.getpass()))"
Use the integrated :ref:`hash_filters` to generate a hashed version of a password.
You shouldn't put plaintext passwords in your playbook or host_vars; instead, use :doc:`playbooks_vault` to encrypt sensitive data.

Loading…
Cancel
Save