Add interpolation note for dynamic-login password

Change-Id: I416c60347679dc648914e7c1b02761882bae8d4a
This commit is contained in:
Pawel Konczalski 2022-03-25 11:59:44 +01:00
parent 94fab70e58
commit 7f5d6538c1

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::