Remove quotation marks in password example

Otherwise the quotation marks are included in the password.

Signed-off-by: Eric Lippmann <eric.lippmann@netways.de>
This commit is contained in:
Tim Helfensdörfer 2015-04-10 13:20:09 +02:00 committed by Eric Lippmann
parent 36726560dd
commit 3015028f5d

View File

@ -107,7 +107,7 @@ Icinga Web 2 uses the MD5 based BSD password algorithm. For generating a passwor
command:
````
openssl passwd -1 "password"
openssl passwd -1 password
````
> Note: The switch to `openssl passwd` is the **number one** (`-1`) for using the MD5 based BSD password algorithm.