V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 41s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-25 17:33:58 +02:00
parent 0db950e2b7
commit 02bff792e1
9 changed files with 130 additions and 121 deletions

View File

@@ -52,7 +52,7 @@ read_password_file() {
declare -a lines=()
### No tracing for security reasons
#[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set +x
[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set +x
if [[ ! -f "${var_input_file}" ]]; then
do_log "fatal" "file_only" "Password file '${var_input_file}' not found."
return "${ERR_READ_PASS_FILE}"
@@ -76,7 +76,7 @@ read_password_file() {
fi
### Turn on tracing again
#[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set -x
[[ "${VAR_DEBUG_TRACE,,}" == "true" ]] && set -x
unset lines
return 0