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
This commit is contained in:
Tom 2016-08-25 17:43:28 +01:00 committed by Matt Davis
parent dd51ddb844
commit d29e9d7d3c

View file

@ -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:: 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 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 <https://code.google.com/p/passlib/>`_ generate these passwords using Python. First, ensure that the `Passlib <https://code.google.com/p/passlib/>`_