V8.00.000.2025.06.17

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-09 08:47:21 +02:00
parent 980f81bfb3
commit 514e9d550b
10 changed files with 14 additions and 331 deletions

View File

@@ -25,7 +25,8 @@ guard_sourcing
# 0: Successfully executed commands.
#######################################
func_debootstrap() {
if debootstrap --arch="${architecture}" "${distribution}" "${TARGET}" https://deb.debian.org/debian; then
# shellcheck disable=SC2154 # "${architecture}" "${distribution}"
if debootstrap --arch="${architecture}" "${distribution}" "${TARGET}" https://deb.debian.org/debian | tee "${LOG_DBS}"; then
do_log "info" "false" "Executing 'debootstrap --arch=${architecture} ${distribution} '${TARGET}' https://deb.debian.org/debian' successful."
return 0
else