summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMartin Krizek <martin.krizek@gmail.com>2018-12-17 15:58:47 +0100
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2018-12-17 08:58:47 -0600
commitfeb971f649e4dacec7287660be0e1660da787dae (patch)
tree91d4a087306340933dff5430bb44fe736ee87178 /docs
parent314e9c02f8c0697eec76fe8e7fa052a0c0dd1151 (diff)
downloadansible-feb971f649e4dacec7287660be0e1660da787dae.tar.gz
docs: remove not implemented password_hash feature (#49945) (#50008)
(cherry picked from commit 79947245e26e1c7067e478eff115eabbc79b39d9)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/user_guide/playbooks_filters.rst6
1 files changed, 0 insertions, 6 deletions
diff --git a/docs/docsite/rst/user_guide/playbooks_filters.rst b/docs/docsite/rst/user_guide/playbooks_filters.rst
index 4d42eeb5d2..290e029599 100644
--- a/docs/docsite/rst/user_guide/playbooks_filters.rst
+++ b/docs/docsite/rst/user_guide/playbooks_filters.rst
@@ -789,12 +789,6 @@ Some hash types allow providing a rounds parameter::
{{ 'secretpassword' | password_hash('sha256', 'mysecretsalt', rounds=10000) }}
-When`Passlib <https://passlib.readthedocs.io/en/stable/>`_ is installed
-`password_hash` supports any crypt scheme and parameter supported by 'Passlib'::
-
- {{ 'secretpassword' | password_hash('sha256_crypt', 'mysecretsalt', rounds=5000) }}
- {{ 'secretpassword' | password_hash('bcrypt', ident='2b', rounds=14) }}
-
.. _combine_filter:
Combining hashes/dictionaries