Merge "Add interpolation note for dynamic-login password"

This commit is contained in:
Zuul 2022-04-20 06:04:38 +00:00 committed by Gerrit Code Review
commit ab75f1d8a2
1 changed files with 4 additions and 3 deletions

View File

@ -27,9 +27,10 @@ rootpwd
:Description: If the operator append rootpwd="$ENCRYPTED_PASSWORD" to the
kernel command line on boot, the helper script will set the
root password to the one specified by this option. Note that
this password must be **encrypted**. Encrypted passwords
can be generated using the ``openssl`` command, e.g:
*openssl passwd -1*.
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'*.
.. note::