V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 40s
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 40s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
29
.shellcheckrc
Normal file
29
.shellcheckrc
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
# SPDX-Version: 3.0
|
||||||
|
# SPDX-CreationInfo: 2025-06-17; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
|
# SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.installer.git
|
||||||
|
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
||||||
|
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
|
# SPDX-FileType: SOURCE
|
||||||
|
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
||||||
|
# SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
|
||||||
|
# SPDX-PackageName: CISS.debian.installer
|
||||||
|
# SPDX-Security-Contact: security@coresecret.eu
|
||||||
|
|
||||||
|
encoding=utf-8
|
||||||
|
external-sources=true
|
||||||
|
shell=bash
|
||||||
|
source=scripts
|
||||||
|
source-path=~/func
|
||||||
|
source-path=~/lib
|
||||||
|
source-path=~/var
|
||||||
|
|
||||||
|
enable=avoid-nullary-conditions
|
||||||
|
enable=check-extra-masked-returns
|
||||||
|
enable=check-set-e-suppressed
|
||||||
|
enable=check-unassigned-uppercase
|
||||||
|
enable=deprecate-which
|
||||||
|
enable=quote-safe-variables
|
||||||
|
enable=require-double-brackets
|
||||||
|
enable=require-variable-braces
|
||||||
|
|
||||||
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=conf
|
||||||
@@ -31,7 +31,8 @@ yaml_parser() {
|
|||||||
|
|
||||||
yq -o=shell "${DIR_TMP}/combined.yaml" >| "${VAR_PRESEED}"
|
yq -o=shell "${DIR_TMP}/combined.yaml" >| "${VAR_PRESEED}"
|
||||||
|
|
||||||
declare -agx ARY_BOOTPARAM=() ARY_NTPSRVR=() ARY_PACKAGES=()
|
# shellcheck disable=SC2034
|
||||||
|
declare -ag ARY_BOOTPARAM=() ARY_NTPSRVR=() ARY_PACKAGES=()
|
||||||
declare -gix VAR_USER_MAX=0
|
declare -gix VAR_USER_MAX=0
|
||||||
declare var_index var_key var_value
|
declare var_index var_key var_value
|
||||||
|
|
||||||
@@ -41,12 +42,13 @@ yaml_parser() {
|
|||||||
var_value=${var_value%\'}
|
var_value=${var_value%\'}
|
||||||
case "${var_key}" in
|
case "${var_key}" in
|
||||||
grub_parameter_[0-9]*) ARY_BOOTPARAM+=("${var_value}") ;;
|
grub_parameter_[0-9]*) ARY_BOOTPARAM+=("${var_value}") ;;
|
||||||
ntp_server_[0-9]*) ARY_NTPSRVR+=("${var_value}") ;;
|
ntp_server_[0-9]*) ARY_NTPSRVR+=("${var_value}") ;;
|
||||||
software_[0-9]*) ARY_PACKAGES+=("${var_value}") ;;
|
software_[0-9]*) ARY_PACKAGES+=("${var_value}") ;;
|
||||||
esac
|
esac
|
||||||
done < "${VAR_PRESEED}"
|
done < "${VAR_PRESEED}"
|
||||||
|
|
||||||
### Search all set variables for user_userN_name patterns.
|
### Search all set variables for user_userN_name patterns.
|
||||||
|
# shellcheck disable=SC2312
|
||||||
while IFS='=' read -r var_index; do
|
while IFS='=' read -r var_index; do
|
||||||
if [[ "${var_index}" =~ ^user_user([0-9]+)_name$ ]]; then
|
if [[ "${var_index}" =~ ^user_user([0-9]+)_name$ ]]; then
|
||||||
var_index="${BASH_REMATCH[1]}"
|
var_index="${BASH_REMATCH[1]}"
|
||||||
|
|||||||
36
func/4210_setup_packages.sh
Normal file
36
func/4210_setup_packages.sh
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# SPDX-Version: 3.0
|
||||||
|
# SPDX-CreationInfo: 2025-06-17; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
|
# SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.installer.git
|
||||||
|
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
||||||
|
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
|
# SPDX-FileType: SOURCE
|
||||||
|
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
||||||
|
# SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
|
||||||
|
# SPDX-PackageName: CISS.debian.installer
|
||||||
|
# SPDX-Security-Contact: security@coresecret.eu
|
||||||
|
|
||||||
|
guard_sourcing
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# description
|
||||||
|
# Globals:
|
||||||
|
# ARY_PACKAGES
|
||||||
|
# TARGET
|
||||||
|
# Arguments:
|
||||||
|
# None
|
||||||
|
# Returns:
|
||||||
|
# 0: on success
|
||||||
|
#######################################
|
||||||
|
setup_packages() {
|
||||||
|
do_in_target_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}"
|
||||||
|
done
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# SPDX-Version: 3.0
|
|
||||||
# SPDX-CreationInfo: 2025-02-13; WEIDNER, Marc S.; <cendev@coresecret.eu>
|
|
||||||
# SPDX-ExternalRef: GIT https://cendev.eu/marc.weidner/CISS.2025.debian.installer.git
|
|
||||||
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
|
||||||
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <cendev@coresecret.eu>
|
|
||||||
# SPDX-FileType: SOURCE
|
|
||||||
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
|
||||||
# SPDX-LicenseComment: This file is part of the CISS.2025.hardened.installer framework.
|
|
||||||
# SPDX-PackageName: CISS.2025.hardened.installer
|
|
||||||
# SPDX-Security-Contact: security@coresecret.eu
|
|
||||||
|
|
||||||
###########################################################################################
|
|
||||||
# 3.8.4. Functions - installation - setup packages #
|
|
||||||
###########################################################################################
|
|
||||||
|
|
||||||
###########################################################################################
|
|
||||||
# Installation of selected packages
|
|
||||||
# Globals:
|
|
||||||
# MODULE_ERR
|
|
||||||
# MODULE_TXT
|
|
||||||
# PACKAGES
|
|
||||||
# TARGET
|
|
||||||
# Arguments:
|
|
||||||
# None
|
|
||||||
###########################################################################################
|
|
||||||
3_8_4_functions_installation_setup_packages() {
|
|
||||||
declare -g -x MODULE_ERR="3_8_4_functions_installation_setup_packages"
|
|
||||||
declare -g -x MODULE_TXT="Installing packages"
|
|
||||||
do_show_header "${MODULE_TXT}"
|
|
||||||
|
|
||||||
do_in_target "${TARGET}" /bin/bash -c "apt-get update -y > /dev/null"
|
|
||||||
|
|
||||||
declare PACKAGE
|
|
||||||
for PACKAGE in "${PACKAGES[@]}"; do
|
|
||||||
|
|
||||||
do_log "info" "false" "Installing package: '${PACKAGE}' executing in: '${TARGET}'."
|
|
||||||
|
|
||||||
if do_in_target "${TARGET}" apt-get install -y "${PACKAGE}"; then
|
|
||||||
do_log "info" "false" "Command: 'apt-get install -y ${PACKAGE}' executed in: '${TARGET}'."
|
|
||||||
else
|
|
||||||
do_log "info" "false" "Failed: command: 'apt-get install -y ${PACKAGE}' executed in: '${TARGET}'."
|
|
||||||
fi
|
|
||||||
|
|
||||||
done
|
|
||||||
|
|
||||||
do_show_footer "${MODULE_TXT}"
|
|
||||||
}
|
|
||||||
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh:
|
|
||||||
Reference in New Issue
Block a user