From 62626521ada6fab93e94d39b4ff6fc2215dd80cf Mon Sep 17 00:00:00 2001 From: Pavlo Shchelokovskyy Date: Tue, 24 May 2022 14:10:01 +0300 Subject: [PATCH] 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 --- diskimage_builder/elements/dynamic-login/README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/diskimage_builder/elements/dynamic-login/README.rst b/diskimage_builder/elements/dynamic-login/README.rst index 5265d6744..e1e30cf6d 100644 --- a/diskimage_builder/elements/dynamic-login/README.rst +++ b/diskimage_builder/elements/dynamic-login/README.rst @@ -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::