All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 42s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
72 lines
3.5 KiB
Bash
72 lines
3.5 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
|
|
|
|
source_guard "./func/helper/1030_check_nic.sh"
|
|
source_guard "./func/helper/1080_helper_chroot.sh"
|
|
source_guard "./func/helper/1081_helper_grub.sh"
|
|
source_guard "./func/helper/1082_helper_modules.sh"
|
|
source_guard "./func/helper/1084_helper_sanitizer.sh"
|
|
source_guard "./func/helper/1085_helper_secure_dl.sh"
|
|
source_guard "./func/helper/1086_helper_yaml.sh"
|
|
source_guard "./func/helper/1220_validation_element.sh"
|
|
source_guard "./func/helper/1221_validation_ip.sh"
|
|
source_guard "./func/helper/1222_validation_preseed.sh"
|
|
source_guard "./func/helper/1250_yaml_parser.sh"
|
|
source_guard "./func/helper/1251_yaml_reader.sh"
|
|
|
|
source_guard "./func/partitioning/3200_partitioning.sh"
|
|
source_guard "./func/partitioning/3210_benchmarking_encryption.sh"
|
|
source_guard "./func/partitioning/3220_partition_encryption.sh"
|
|
source_guard "./func/partitioning/3240_partition_formatting.sh"
|
|
source_guard "./func/partitioning/3260_setup_filesystem.sh"
|
|
source_guard "./func/partitioning/3280_mount_partition.sh"
|
|
source_guard "./func/partitioning/3290_uuid_logger.sh"
|
|
source_guard "./func/partitioning/3295_get_label.sh"
|
|
|
|
source_guard "./func/system/4000_debootstrap.sh"
|
|
source_guard "./func/system/4020_configure_system.sh"
|
|
source_guard "./func/system/4040_generate_fstab.sh"
|
|
source_guard "./func/system/4060_generate_crypttab.sh"
|
|
source_guard "./func/system/4080_generate_sources.sh"
|
|
source_guard "./func/system/4090_minimal_toolset.sh"
|
|
source_guard "./func/system/4095_setup_skel.sh"
|
|
source_guard "./func/system/4100_setup_timezone.sh"
|
|
source_guard "./func/system/4110_setup_locales.sh"
|
|
source_guard "./func/system/4120_installation_kernel.sh"
|
|
source_guard "./func/system/4130_setup_network.sh"
|
|
source_guard "./func/system/4140_setup_hostname.sh"
|
|
source_guard "./func/system/4150_setup_grub.sh"
|
|
source_guard "./func/system/4155_setup_grub_password.sh"
|
|
source_guard "./func/system/4160_grub_bootparameter.sh"
|
|
source_guard "./func/system/4165_kernel_modules.sh"
|
|
source_guard "./func/system/4166_kernel_sysctl.sh"
|
|
source_guard "./func/system/4170_installation_microcode.sh"
|
|
source_guard "./func/system/4180_setup_ssh.sh"
|
|
source_guard "./func/system/4190_build_dropbear.sh"
|
|
source_guard "./func/system/4191_install_dropbear_initramfs.sh"
|
|
source_guard "./func/system/4195_setup_dropbear.sh"
|
|
source_guard "./func/system/4200_setup_accounts.sh"
|
|
source_guard "./func/system/4210_setup_packages.sh"
|
|
source_guard "./func/system/4220_setup_sudo.sh"
|
|
source_guard "./func/system/4230_setup_chrony.sh"
|
|
source_guard "./func/system/4999_exiting_chroot_system.sh"
|
|
source_guard "./func/system/5000_hardening_files.sh"
|
|
|
|
#source_guard "./func/recovery/3.8.9.functions_installation_wrapper_recovery.sh"
|
|
#source_guard "./func/recovery/3.9.0.functions_installation_setup_recovery.sh"
|
|
#source_guard "./func/recovery/3.9.1.functions_installation_generate_files_recovery.sh"
|
|
|
|
#source_guard "./func/9998_check_sshd_config_integrity.sh"
|
|
#source_guard "./func/9999_check_grub_cmdline.sh"
|
|
|
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|