V8.00.000.2025.06.17

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-07-23 08:50:22 +02:00
parent 328e346c95
commit 080e04efa3
52 changed files with 35 additions and 37 deletions

View File

@@ -35,8 +35,6 @@ setup_chrony() {
done
printf "# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh %s" "${NL}" >> "${var_of}"
# do_remove_service "systemd-timesyncd.service" "systemd-timesyncd"
mkdir -p "${TARGET}/var/log/chrony"
do_in_target "${TARGET}" apt-get install chrony -y

View File

@@ -9,40 +9,40 @@
# SPDX-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
# SPDX-PackageName: CISS.debian.installer
# SPDX-Security-Contact: security@coresecret.eu
. ./func/1030_check_nic.sh
. ./func/1080_helper_chroot.sh
. ./func/1081_helper_grub.sh
. ./func/1082_helper_modules.sh
. ./func/1083_helper_print.sh
. ./func/1084_helper_sanitizer.sh
. ./func/1085_helper_secure_dl.sh
. ./func/1086_helper_yaml.sh
. ./func/1120_logging_modules.sh
. ./func/1220_validation_element.sh
. ./func/1221_validation_ip.sh
. ./func/1222_validation_preseed.sh
. ./func/1250_yaml_parser.sh
. ./func/1251_yaml_reader.sh
. ./func/3200_partitioning.sh
. ./func/3220_partition_encryption.sh
. ./func/3240_partition_formatting.sh
. ./func/3260_setup_filesystem.sh
. ./func/3280_mount_partition.sh
. ./func/3290_uuid_logger.sh
. ./func/4000_debootstrap.sh
. ./func/4020_configure_system.sh
. ./func/4040_generate_fstab.sh
. ./func/4060_generate_crypttab.sh
. ./func/4080_generate_sources.sh
. ./func/4100_setup_timezone.sh
. ./func/4110_setup_locales.sh
. ./func/4120_installation_kernel.sh
. ./func/4130_setup_network.sh
. ./func/4140_setup_hostname.sh
. ./func/4150_setup_grub.sh
. ./func/4160_grub_bootparameter.sh
. ./func/4170_installation_microcode.sh
. ./func/4180_setup_ssh.sh
. ./func/4195_setup_dropbear.sh
. ./func/helper/1030_check_nic.sh
. ./func/helper/1080_helper_chroot.sh
. ./func/helper/1081_helper_grub.sh
. ./func/helper/1082_helper_modules.sh
. ./func/helper/1083_helper_print.sh
. ./func/helper/1084_helper_sanitizer.sh
. ./func/helper/1085_helper_secure_dl.sh
. ./func/helper/1086_helper_yaml.sh
. ./func/helper/1120_logging_modules.sh
. ./func/helper/1220_validation_element.sh
. ./func/helper/1221_validation_ip.sh
. ./func/helper/1222_validation_preseed.sh
. ./func/helper/1250_yaml_parser.sh
. ./func/helper/1251_yaml_reader.sh
. ./func/partitioning/3200_partitioning.sh
. ./func/partitioning/3220_partition_encryption.sh
. ./func/partitioning/3240_partition_formatting.sh
. ./func/partitioning/3260_setup_filesystem.sh
. ./func/partitioning/3280_mount_partition.sh
. ./func/partitioning/3290_uuid_logger.sh
. ./func/system/4000_debootstrap.sh
. ./func/system/4020_configure_system.sh
. ./func/system/4040_generate_fstab.sh
. ./func/system/4060_generate_crypttab.sh
. ./func/system/4080_generate_sources.sh
. ./func/system/4100_setup_timezone.sh
. ./func/system/4110_setup_locales.sh
. ./func/system/4120_installation_kernel.sh
. ./func/system/4130_setup_network.sh
. ./func/system/4140_setup_hostname.sh
. ./func/system/4150_setup_grub.sh
. ./func/system/4160_grub_bootparameter.sh
. ./func/system/4170_installation_microcode.sh
. ./func/system/4180_setup_ssh.sh
. ./func/system/4195_setup_dropbear.sh
. ./func/
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh