From d29e9d7d3c8fea629e40cfe7bf90747c9b70e771 Mon Sep 17 00:00:00 2001 From: Tom Date: Thu, 25 Aug 2016 17:43:28 +0100 Subject: [PATCH] Update command for generating password (#17170) The option to generate a password is --method=sha-512 instead of --method=SHA-512 which produces a hash not found error --- docsite/rst/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/faq.rst b/docsite/rst/faq.rst index efea43b7fef..2ef04b17ca4 100644 --- a/docsite/rst/faq.rst +++ b/docsite/rst/faq.rst @@ -264,7 +264,7 @@ How do I generate crypted passwords for the user module? The mkpasswd utility that is available on most Linux systems is a great option:: - mkpasswd --method=SHA-512 + mkpasswd --method=sha-512 If this utility is not installed on your system (e.g. you are using OS X) then you can still easily generate these passwords using Python. First, ensure that the `Passlib `_