V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m7s
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m7s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
@@ -653,7 +653,7 @@ software:
|
|||||||
# chrony
|
# chrony
|
||||||
#
|
#
|
||||||
##############################################################################################################################
|
##############################################################################################################################
|
||||||
### Installed by 4160_installation_lynis.sh
|
### Installed by 4170_installation_lynis.sh
|
||||||
##############################################################################################################################
|
##############################################################################################################################
|
||||||
# lynis
|
# lynis
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -273,7 +273,9 @@ info_echo "4145_installation_firmware.sh"
|
|||||||
installation_firmware
|
installation_firmware
|
||||||
info_echo "4150_installation_chrony.sh"
|
info_echo "4150_installation_chrony.sh"
|
||||||
installation_chrony
|
installation_chrony
|
||||||
info_echo "4160_installation_lynis.sh"
|
info_echo "4160_installation_eza.sh"
|
||||||
|
installation_eza
|
||||||
|
info_echo "4170_installation_lynis.sh"
|
||||||
installation_lynis
|
installation_lynis
|
||||||
|
|
||||||
### CDI_4200
|
### CDI_4200
|
||||||
|
|||||||
59
func/cdi_4100_base/4160_installation_eza.sh
Normal file
59
func/cdi_4100_base/4160_installation_eza.sh
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# Install Cisofy Lynis.
|
||||||
|
# Globals:
|
||||||
|
# TARGET
|
||||||
|
# Arguments:
|
||||||
|
# None
|
||||||
|
# Returns:
|
||||||
|
# 0: on success
|
||||||
|
#######################################
|
||||||
|
installation_eza() {
|
||||||
|
### Declare Arrays, HashMaps, and Variables.
|
||||||
|
declare -r var_logfile="/root/.ciss/cdi/log/4160_installation_eza.log"
|
||||||
|
|
||||||
|
chroot_logger "${TARGET}${var_logfile}"
|
||||||
|
|
||||||
|
# shellcheck disable=SC2312
|
||||||
|
wget -qO- https://raw.githubusercontent.com/eza-community/eza/main/deb.asc | \
|
||||||
|
gpg --dearmor -o "${TARGET}/etc/apt/trusted.gpg.d/gierens.gpg"
|
||||||
|
|
||||||
|
insert_header "${TARGET}/etc/apt/sources.list.d/gierens.sources"
|
||||||
|
insert_comments "${TARGET}/etc/apt/sources.list.d/gierens.sources"
|
||||||
|
cat << 'EOF' >> "${TARGET}/etc/apt/sources.list.d/gierens.sources"
|
||||||
|
#------------------------------------------------------------------------------------------------------------------------------#
|
||||||
|
# OFFICIAL GIERENS REPOS #
|
||||||
|
#------------------------------------------------------------------------------------------------------------------------------#
|
||||||
|
Types: deb
|
||||||
|
URIs: https://deb.gierens.de
|
||||||
|
Suites: stable
|
||||||
|
Components: main
|
||||||
|
Enabled: yes
|
||||||
|
Signed-By: /etc/apt/trusted.gpg.d/gierens.gpg
|
||||||
|
|
||||||
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=conf
|
||||||
|
EOF
|
||||||
|
|
||||||
|
chroot_script "${TARGET}" "
|
||||||
|
export INITRD=No
|
||||||
|
apt-get update
|
||||||
|
apt-get install -y --no-install-recommends --no-install-suggests eza 2>&1 | tee -a ${var_logfile}
|
||||||
|
echo ExitCode: \$? >> ${var_logfile}
|
||||||
|
"
|
||||||
|
|
||||||
|
guard_dir && return 0
|
||||||
|
}
|
||||||
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|
||||||
@@ -23,7 +23,7 @@ guard_sourcing
|
|||||||
#######################################
|
#######################################
|
||||||
installation_lynis() {
|
installation_lynis() {
|
||||||
### Declare Arrays, HashMaps, and Variables.
|
### Declare Arrays, HashMaps, and Variables.
|
||||||
declare -r var_logfile="/root/.ciss/cdi/log/4160_installation_lynis.log"
|
declare -r var_logfile="/root/.ciss/cdi/log/4170_installation_lynis.log"
|
||||||
|
|
||||||
chroot_logger "${TARGET}${var_logfile}"
|
chroot_logger "${TARGET}${var_logfile}"
|
||||||
|
|
||||||
@@ -38,6 +38,7 @@ accounts_preparation() {
|
|||||||
|
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.bashrc" "${TARGET}/etc/skel/.bashrc"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.bashrc" "${TARGET}/etc/skel/.bashrc"
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.zshrc" "${TARGET}/etc/skel/.zshrc"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.zshrc" "${TARGET}/etc/skel/.zshrc"
|
||||||
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.ciss/theme_eza_ciss.yml" "${TARGET}/etc/skel/.ciss/"
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/alias" "${TARGET}/etc/skel/.ciss/alias"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/alias" "${TARGET}/etc/skel/.ciss/alias"
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/clean_logout.sh" "${TARGET}/etc/skel/.ciss/clean_logout.sh"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/clean_logout.sh" "${TARGET}/etc/skel/.ciss/clean_logout.sh"
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/f2bchk.sh" "${TARGET}/etc/skel/.ciss/f2bchk.sh"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/root/.ciss/f2bchk.sh" "${TARGET}/etc/skel/.ciss/f2bchk.sh"
|
||||||
|
|||||||
@@ -54,6 +54,7 @@ accounts_setup() {
|
|||||||
install -d -m 0700 -o root -g root "${TARGET}/root/.ssh"
|
install -d -m 0700 -o root -g root "${TARGET}/root/.ssh"
|
||||||
install -m 0600 -o root -g root /dev/null "${TARGET}/root/.ssh/authorized_keys"
|
install -m 0600 -o root -g root /dev/null "${TARGET}/root/.ssh/authorized_keys"
|
||||||
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.bashrc" "${TARGET}/root/"
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.bashrc" "${TARGET}/root/"
|
||||||
|
install -m 0600 -o root -g root "${VAR_SETUP_PATH}/includes/target/etc/skel/.ciss/theme_eza_ciss.yml" "${TARGET}/root/.ciss/"
|
||||||
|
|
||||||
if [[ "${user_root_shell}" == "/bin/zsh" ]]; then
|
if [[ "${user_root_shell}" == "/bin/zsh" ]]; then
|
||||||
|
|
||||||
@@ -189,7 +190,18 @@ EOF
|
|||||||
|
|
||||||
[[ "${user_root_authentication_2fa_tty}" == "true" ]] && pam_access_totp_enable "root" "login"
|
[[ "${user_root_authentication_2fa_tty}" == "true" ]] && pam_access_totp_enable "root" "login"
|
||||||
|
|
||||||
### 7) Final status logging.
|
### 7) Install eza themes.
|
||||||
|
eza_installer "root"
|
||||||
|
|
||||||
|
### 8) Double check permissions.
|
||||||
|
### Directories: 0700
|
||||||
|
find "${TARGET}/root" -type d -exec chmod 0700 {} +
|
||||||
|
### Executable files: 0700 (any x-bit set)
|
||||||
|
find "${TARGET}/root" -type f -perm /111 -exec chmod 0700 {} +
|
||||||
|
### Non-executable files: 0600
|
||||||
|
find "${TARGET}/root" -type f ! -perm /111 -exec chmod 0600 {} +
|
||||||
|
|
||||||
|
### 9) Final status logging.
|
||||||
do_log "info" "file_only" "4520() User: 'root' updated."
|
do_log "info" "file_only" "4520() User: 'root' updated."
|
||||||
|
|
||||||
|
|
||||||
@@ -247,6 +259,7 @@ EOF
|
|||||||
--shell "${var_shell}" \
|
--shell "${var_shell}" \
|
||||||
--uid "${var_uid}" \
|
--uid "${var_uid}" \
|
||||||
"${var_username}"
|
"${var_username}"
|
||||||
|
eza_installer "${var_username}"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
true:false)
|
true:false)
|
||||||
@@ -427,6 +440,34 @@ EOF
|
|||||||
guard_dir && return 0
|
guard_dir && return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# Install eza CISS theme for the respective user.
|
||||||
|
# Globals:
|
||||||
|
# TARGET
|
||||||
|
# Arguments:
|
||||||
|
# 1: Username
|
||||||
|
# Returns:
|
||||||
|
# 0: on success
|
||||||
|
#######################################
|
||||||
|
eza_installer() {
|
||||||
|
### Declare Arrays, HashMaps, and Variables.
|
||||||
|
declare var_user="${1}"
|
||||||
|
case "${1}" in
|
||||||
|
root) declare var_base="/root" ;;
|
||||||
|
*) declare var_base="/home/${var_user}" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
chroot_script "${TARGET}" "
|
||||||
|
cd ${var_base}
|
||||||
|
git clone https://github.com/eza-community/eza-themes.git
|
||||||
|
mkdir -p ${var_base}/.config/eza
|
||||||
|
"
|
||||||
|
|
||||||
|
ln -sf "${TARGET}${var_base}/.ciss/theme_eza_ciss.yml" "${TARGET}${var_base}/.config/eza/theme.yml"
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
# Generates a deterministic TOTP secret based on:
|
# Generates a deterministic TOTP secret based on:
|
||||||
# Username, FQDN, MFA salt, MFA master seed
|
# Username, FQDN, MFA salt, MFA master seed
|
||||||
|
|||||||
125
includes/target/etc/skel/.ciss/theme_eza_ciss.yml
Normal file
125
includes/target/etc/skel/.ciss/theme_eza_ciss.yml
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
# 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
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
|
||||||
|
colourful: true
|
||||||
|
|
||||||
|
filekinds:
|
||||||
|
normal: {foreground: Default}
|
||||||
|
directory: {foreground: Purple, is_bold: true}
|
||||||
|
symlink: {foreground: Cyan}
|
||||||
|
pipe: {foreground: Yellow}
|
||||||
|
block_device: {foreground: Yellow, is_bold: true}
|
||||||
|
char_device: {foreground: Yellow, is_bold: true}
|
||||||
|
socket: {foreground: Red, is_bold: true}
|
||||||
|
special: {foreground: Yellow}
|
||||||
|
executable: {foreground: Green, is_bold: true}
|
||||||
|
mount_point: {foreground: Purple, is_bold: true, is_underlined: true}
|
||||||
|
|
||||||
|
perms:
|
||||||
|
user_read: {foreground: Yellow, is_bold: true}
|
||||||
|
user_write: {foreground: Red, is_bold: true}
|
||||||
|
user_execute_file: {foreground: Green, is_bold: true, is_underlined: true}
|
||||||
|
user_execute_other: {foreground: Green, is_bold: true}
|
||||||
|
group_read: {foreground: Yellow}
|
||||||
|
group_write: {foreground: Red}
|
||||||
|
group_execute: {foreground: Green}
|
||||||
|
other_read: {foreground: Yellow}
|
||||||
|
other_write: {foreground: Red}
|
||||||
|
other_execute: {foreground: Green}
|
||||||
|
special_user_file: {foreground: Purple}
|
||||||
|
special_other: {foreground: Purple}
|
||||||
|
attribute: {foreground: Default}
|
||||||
|
|
||||||
|
size:
|
||||||
|
major: {foreground: Green, is_bold: true}
|
||||||
|
minor: {foreground: Green}
|
||||||
|
number_byte: {foreground: Green, is_bold: true}
|
||||||
|
number_kilo: {foreground: Green, is_bold: true}
|
||||||
|
number_mega: {foreground: Green, is_bold: true}
|
||||||
|
number_giga: {foreground: Green, is_bold: true}
|
||||||
|
number_huge: {foreground: Green, is_bold: true}
|
||||||
|
unit_byte: {foreground: Green}
|
||||||
|
unit_kilo: {foreground: Green}
|
||||||
|
unit_mega: {foreground: Green}
|
||||||
|
unit_giga: {foreground: Green}
|
||||||
|
unit_huge: {foreground: Green}
|
||||||
|
|
||||||
|
users:
|
||||||
|
user_you: {foreground: Yellow, is_bold: true}
|
||||||
|
user_root: {foreground: Default}
|
||||||
|
user_other: {foreground: Default}
|
||||||
|
group_yours: {foreground: Yellow, is_bold: true}
|
||||||
|
group_other: {foreground: Default}
|
||||||
|
group_root: {foreground: Default}
|
||||||
|
|
||||||
|
links:
|
||||||
|
normal: {foreground: Red, is_bold: true}
|
||||||
|
multi_link_file: {foreground: Red, background: Yellow}
|
||||||
|
|
||||||
|
git:
|
||||||
|
new: {foreground: Green}
|
||||||
|
modified: {foreground: Blue}
|
||||||
|
deleted: {foreground: Red}
|
||||||
|
renamed: {foreground: Yellow}
|
||||||
|
typechange: {foreground: Purple}
|
||||||
|
ignored: {foreground: Default, is_dimmed: true}
|
||||||
|
conflicted: {foreground: Red}
|
||||||
|
|
||||||
|
git_repo:
|
||||||
|
branch_main: {foreground: Green}
|
||||||
|
branch_other: {foreground: Yellow}
|
||||||
|
git_clean: {foreground: Green}
|
||||||
|
git_dirty: {foreground: Yellow}
|
||||||
|
|
||||||
|
security_context:
|
||||||
|
colon: {foreground: Default, is_dimmed: true}
|
||||||
|
user: {foreground: Blue}
|
||||||
|
role: {foreground: Green}
|
||||||
|
typ: {foreground: Yellow}
|
||||||
|
range: {foreground: Cyan}
|
||||||
|
|
||||||
|
file_type:
|
||||||
|
image: {foreground: Purple}
|
||||||
|
video: {foreground: Purple, is_bold: true}
|
||||||
|
music: {foreground: Cyan}
|
||||||
|
lossless: {foreground: Cyan, is_bold: true}
|
||||||
|
crypto: {foreground: Green, is_bold: true}
|
||||||
|
document: {foreground: Green}
|
||||||
|
compressed: {foreground: Red}
|
||||||
|
temp: {foreground: White}
|
||||||
|
compiled: {foreground: Yellow}
|
||||||
|
build: {foreground: Yellow, is_bold: true, is_underlined: true}
|
||||||
|
source: {foreground: Yellow, is_bold: true}
|
||||||
|
|
||||||
|
punctuation: {foreground: DarkGray, is_bold: true}
|
||||||
|
date: {foreground: Cyan}
|
||||||
|
inode: {foreground: Purple}
|
||||||
|
blocks: {foreground: Cyan}
|
||||||
|
header: {foreground: White, is_bold: true, is_underlined: true}
|
||||||
|
octal: {foreground: Purple}
|
||||||
|
flags: {foreground: Default}
|
||||||
|
|
||||||
|
symlink_path: {foreground: Cyan}
|
||||||
|
control_char: {foreground: Red}
|
||||||
|
broken_symlink: {foreground: Red}
|
||||||
|
broken_path_overlay: {foreground: Default, is_underlined: true}
|
||||||
|
|
||||||
|
filenames:
|
||||||
|
# Custom filename-based overrides
|
||||||
|
# Cargo.toml: {icon: {glyph: 🦀}}
|
||||||
|
|
||||||
|
extensions:
|
||||||
|
# Custom extension-based overrides
|
||||||
|
# rs: {filename: {foreground: Red}, icon: {glyph: 🦀}}
|
||||||
|
|
||||||
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=yaml
|
||||||
@@ -62,7 +62,8 @@ source_guard "./func/cdi_4100_base/4133_installation_masking.sh"
|
|||||||
source_guard "./func/cdi_4100_base/4140_installation_microcode.sh"
|
source_guard "./func/cdi_4100_base/4140_installation_microcode.sh"
|
||||||
source_guard "./func/cdi_4100_base/4145_installation_firmware.sh"
|
source_guard "./func/cdi_4100_base/4145_installation_firmware.sh"
|
||||||
source_guard "./func/cdi_4100_base/4150_installation_chrony.sh"
|
source_guard "./func/cdi_4100_base/4150_installation_chrony.sh"
|
||||||
source_guard "./func/cdi_4100_base/4160_installation_lynis.sh"
|
source_guard "./func/cdi_4100_base/4160_installation_eza.sh"
|
||||||
|
source_guard "./func/cdi_4100_base/4170_installation_lynis.sh"
|
||||||
|
|
||||||
### cdi_4200_boot
|
### cdi_4200_boot
|
||||||
source_guard "./func/cdi_4200_boot/4200_generate_fstab.sh"
|
source_guard "./func/cdi_4200_boot/4200_generate_fstab.sh"
|
||||||
|
|||||||
Reference in New Issue
Block a user