Fix openssl example command in dynamic-login

the command had one error in it (missing one backslash)
and was rendered wrong, w/o any backslashes at all.

Change-Id: If187f645b818f47d10b602ccee12c29892a8d88d
This commit is contained in:
Pavlo Shchelokovskyy 2022-05-24 14:10:01 +03:00
parent 2f06cbc4eb
commit 62626521ad
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ rootpwd
root password to the one specified by this option. Note that
this password must be **encrypted**. Interpolation can be
avoided by using $$. Encrypted passwords can be generated
using the ``openssl`` command, e.g: *openssl passwd -1
-stdin <<< YOUR_PASSWORD | sed 's/\$/\$$/g'*.
using the ``openssl`` command, e.g: ``openssl passwd -1
-stdin <<< YOUR_PASSWORD | sed 's/\$/\$\$/g'``.
.. note::