From d4254c273fa166b90e7fdd946176ca56ac931d62 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Tue, 25 Mar 2025 09:42:59 +0000 Subject: [PATCH] remove stale live.password_dialog and live.password_systemd Only key=value is now recognized, where value must be '1'. Signed-off-by: Olaf Hering --- docs/devel/live_iso.md | 4 ++-- docs/user/boot_options/index.md | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/devel/live_iso.md b/docs/devel/live_iso.md index 79b497c..8f3a8d6 100644 --- a/docs/devel/live_iso.md +++ b/docs/devel/live_iso.md @@ -106,13 +106,13 @@ You can define the password directly on the boot command line. There are two opt You can enter your password during boot in an interactive session. Again, there are two options: -- Use `live.password_dialog` boot option to start an interactive dialog during the boot process. +- Use `live.password_dialog=1` boot option to start an interactive dialog during the boot process. This uses a nice dialog for entering and confirming the password. However, in some situations the full screen dialog might not be displayed correctly or some messages might be displayed over it. In that case you might use the `Ctrl+L` key shortcut to refresh the screen. If it still does not work then try using the other option below. -- Use `live.password_systemd` boot option to ask for the password in a simple prompt. This is +- Use `live.password_systemd=1` boot option to ask for the password in a simple prompt. This is similar to the option above, but the advantage is that this solution does not use a full screen dialog but a single line prompt so it should work better in special environments like a serial console. diff --git a/docs/user/boot_options/index.md b/docs/user/boot_options/index.md index c7375cd..5edd083 100644 --- a/docs/user/boot_options/index.md +++ b/docs/user/boot_options/index.md @@ -114,24 +114,22 @@ inst.dud=label://UPDATES/package.rpm avoids accidentally using the default password from the medium. ::: -- `live.password_dialog` Start an interactive dialog during the boot process. This uses a nice +- `live.password_dialog=1` Start an interactive dialog during the boot process. This uses a nice dialog for entering and confirming the password. However, in some situations the full screen dialog might not be displayed correctly or some messages might be displayed over it. In that case you might use the `Ctrl+L` key shortcut to refresh the screen. If it still does not work then try using the other option below. ```text - live.password_dialog live.password_dialog=1 ``` -- `live.password_systemd` Ask for a password using a simple prompt. This is +- `live.password_systemd=1` Ask for a password using a simple prompt. This is similar to the option above, but the advantage is that this solution does not use a full screen dialog but a single line prompt so it should work better in special environments like a serial console. ```text - live.password_systemd live.password_systemd=1 ```