V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m24s
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m24s
Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
@@ -10,10 +10,23 @@
|
|||||||
# SPDX-PackageName: CISS.debian.installer
|
# SPDX-PackageName: CISS.debian.installer
|
||||||
# SPDX-Security-Contact: security@coresecret.eu
|
# SPDX-Security-Contact: security@coresecret.eu
|
||||||
|
|
||||||
###########################################################################################
|
#######################################
|
||||||
# Function to encrypt the respective partition on each device according to the chosen recipe string.
|
# Function to encrypt the respective partition on each device according to the chosen recipe string.
|
||||||
|
# Globals:
|
||||||
|
# DIR_BAK
|
||||||
|
# DIR_CNF
|
||||||
|
# HMP_ENCRYPTIONLABEL_UUID
|
||||||
|
# HMP_EPHEMERAL_DEV
|
||||||
|
# HMP_EPHEMERAL_ENCLABEL
|
||||||
|
# HMP_MOUNTPATH_ENCRYPTIONLABEL
|
||||||
|
# RECIPE_STRING
|
||||||
|
# VAR_CRYPT_ROOT
|
||||||
|
# VAR_RECIPE_STRING
|
||||||
|
# VAR_SETUP_PART
|
||||||
|
# Arguments:
|
||||||
|
# None
|
||||||
|
#######################################
|
||||||
partition_encryption() {
|
partition_encryption() {
|
||||||
|
|
||||||
### Declare Arrays and Variables.
|
### Declare Arrays and Variables.
|
||||||
declare -Ag HMP_EPHEMERAL_DEV HMP_EPHEMERAL_ENCLABEL
|
declare -Ag HMP_EPHEMERAL_DEV HMP_EPHEMERAL_ENCLABEL
|
||||||
declare -Ag HMP_ENCRYPTIONLABEL_UUID HMP_MOUNTPATH_ENCRYPTIONLABEL
|
declare -Ag HMP_ENCRYPTIONLABEL_UUID HMP_MOUNTPATH_ENCRYPTIONLABEL
|
||||||
@@ -244,4 +257,4 @@ partition_encryption() {
|
|||||||
|
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh:
|
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# SPDX-Version: 3.0
|
# SPDX-Version: 3.0
|
||||||
# SPDX-CreationInfo: 2025-02-13; WEIDNER, Marc S.; <cendev@coresecret.eu>
|
# SPDX-CreationInfo: 2025-06-17; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
# SPDX-ExternalRef: GIT https://cendev.eu/marc.weidner/CISS.2025.debian.installer.git
|
# SPDX-ExternalRef: GIT https://git.coresecret.dev/msw/CISS.debian.installer.git
|
||||||
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
# SPDX-FileContributor: WEIDNER, Marc S.; Centurion Intelligence Consulting Agency
|
||||||
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <cendev@coresecret.eu>
|
# SPDX-FileCopyrightText: 2024-2025; WEIDNER, Marc S.; <msw@coresecret.dev>
|
||||||
# SPDX-FileType: SOURCE
|
# SPDX-FileType: SOURCE
|
||||||
# SPDX-License-Identifier: EUPL-1.2 OR LicenseRef-CCLA-1.0
|
# 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-LicenseComment: This file is part of the CISS.debian.installer.secure framework.
|
||||||
# SPDX-PackageName: CISS.2025.hardened.installer
|
# SPDX-PackageName: CISS.debian.installer
|
||||||
# SPDX-Security-Contact: security@coresecret.eu
|
# SPDX-Security-Contact: security@coresecret.eu
|
||||||
|
|
||||||
###########################################################################################
|
###########################################################################################
|
||||||
@@ -73,12 +73,22 @@ declare -Ag HMP_RECIPE_DEV_PARTITIONS
|
|||||||
declare -Ag HMP_UUID_PARTITION
|
declare -Ag HMP_UUID_PARTITION
|
||||||
|
|
||||||
### 3220_partition_encryption.sh
|
### 3220_partition_encryption.sh
|
||||||
### Assoziative Array (HashMap) to store UUIDs for each partition
|
### Assoziative Array (HashMap) to store Ephemeral Device for each Mount Path
|
||||||
|
### HMP_EPHEMERAL_DEV["${var_mount_path}"]="/dev/${var_dev}${var_part}"
|
||||||
|
declare -Ag HMP_EPHEMERAL_DEV
|
||||||
|
### Assoziative Array (HashMap) to store Ephemeral Device Encryption Label for each Mount Path
|
||||||
|
### HMP_EPHEMERAL_ENCLABEL["${var_mount_path}"]="${var_encryption_label}"
|
||||||
|
declare -Ag HMP_EPHEMERAL_ENCLABEL
|
||||||
|
### Assoziative Array (HashMap) to store UUID for each Encryption Label
|
||||||
|
### HMP_ENCRYPTIONLABEL_UUID["${var_encryption_label}"]="${var_uuid}"
|
||||||
|
declare -Ag HMP_ENCRYPTIONLABEL_UUID
|
||||||
|
### Assoziative Array (HashMap) to store Encryption Label for each Mount Path
|
||||||
|
### HMP_MOUNTPATH_ENCRYPTIONLABEL["${var_mount_path}"]="${var_encryption_label}"
|
||||||
|
declare -Ag HMP_MOUNTPATH_ENCRYPTIONLABEL
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
declare -Ag HMP_EPHEMERAL_DEV HMP_EPHEMERAL_ENCLABEL
|
|
||||||
declare -Ag HMP_ENCRYPTIONLABEL_UUID HMP_MOUNTPATH_ENCRYPTIONLABEL
|
|
||||||
|
|
||||||
### TODO
|
### TODO
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user