69 lines
2.3 KiB
Bash
69 lines
2.3 KiB
Bash
#!/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
|
|
|
|
#######################################
|
|
# Wrapper for executing commands in the desired chroot environment.
|
|
# Globals:
|
|
# TERM
|
|
# Arguments:
|
|
# $1: Target of the chroot environment.
|
|
# $@: Commands and options and parameters to be executed in chroot.
|
|
#######################################
|
|
do_in_target() {
|
|
declare var_chroot_target="$1"; shift
|
|
declare ary_chroot_command=("$@")
|
|
do_log "info" "false" "Executing in the target system '${var_chroot_target}' command: '${ary_chroot_command[*]}'."
|
|
chroot "${var_chroot_target}" /usr/bin/env -i \
|
|
HOME=/root \
|
|
PATH=/usr/sbin:/usr/bin:/sbin:/bin \
|
|
TERM="${TERM}" \
|
|
"${ary_chroot_command[@]}"
|
|
}
|
|
|
|
#######################################
|
|
# Helper Module to generate a Subnet Mask out of an IP in CCDIR Notation.
|
|
# Arguments:
|
|
# $1: IPv4 in CCDIR Notation, e.g.,: 192.168.128.128/24
|
|
# Returns:
|
|
# 0 : In every case a zero return value is delivered.
|
|
#######################################
|
|
generate_subnetmask() {
|
|
declare var_arg="$1"
|
|
declare var_prefix="${var_arg#*/}"
|
|
declare var_mask_int=""
|
|
declare var_has_ipv4_subnet=""
|
|
var_mask_int=$((0xFFFFFFFF << (32 - var_prefix) & 0xFFFFFFFF))
|
|
var_has_ipv4_subnet=$(printf "%d.%d.%d.%d" \
|
|
$(((var_mask_int >> 24) & 0xFF)) \
|
|
$(((var_mask_int >> 16) & 0xFF)) \
|
|
$(((var_mask_int >> 8) & 0xFF)) \
|
|
$((var_mask_int & 0xFF)))
|
|
echo "${var_has_ipv4_subnet}"
|
|
return 0
|
|
}
|
|
|
|
#######################################
|
|
# Helper module for full upgrade, autoremove and autoclean.
|
|
# Arguments:
|
|
# None
|
|
#######################################
|
|
update_upgrade() {
|
|
apt-get update -y
|
|
apt-get upgrade -y
|
|
apt-get autoclean -y
|
|
apt-get autopurge -y
|
|
apt-get autoremove -y
|
|
}
|
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|