V8.00.000.2025.06.17

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-17 20:48:58 +02:00
parent 458dcfdb98
commit 559f36d906
29 changed files with 443 additions and 88 deletions

View File

@@ -23,12 +23,12 @@ guard_sourcing
# 0: on success
#######################################
setup_packages() {
do_in_target_script "${TARGET}" "apt-get update -y > /dev/null"
chroot_script "${TARGET}" "apt-get update -y > /dev/null"
declare var_install_candidate=""
for var_install_candidate in "${ARY_PACKAGES[@]}"; do
do_in_target "${TARGET}" apt-get install -y "${var_install_candidate}"
chroot_exec "${TARGET}" apt-get install -y "${var_install_candidate}"
done
guard_dir && return 0