V8.13.440.2025.11.19
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m28s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-11-22 14:48:56 +00:00
parent 1d91852d68
commit 5362412a9a
2 changed files with 261 additions and 4 deletions

View File

@@ -267,16 +267,19 @@ PID_BROKER="$!"
fi
printf "\e[93m[INFO] Enter LUKS passphrase on console: \n\e[0m" >/dev/console 2>/dev/null || break
#printf "\e[93m[INFO] Enter LUKS passphrase on console: \n\e[0m" >/dev/console 2>/dev/null || break
if ! IFS= read -r PASS </dev/console 2>/dev/null; then
#if ! IFS= read -r PASS </dev/console 2>/dev/null; then
break
# break
fi
#fi
[ -n "${PASS}" ] || continue
# shellcheck disable=SC2310
PASS="$(ask_pass_console)" || continue
printf '%s\n' "${PASS}" >| /lib/cryptsetup/passfifo 2>/dev/null || :
done