mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 10:24:24 -05:00
35 lines
888 B
Bash
Executable File
35 lines
888 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) Edgeless Systems GmbH
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
function onError {
|
|
echo "Failed to prepare state disk"
|
|
sleep 2 # give the serial console time to print the error message
|
|
}
|
|
|
|
trap onError ERR
|
|
|
|
# parsing of the command line arguments. check if argv[1] is --debug
|
|
verbosity=0
|
|
if [[ $# -gt 0 ]]; then
|
|
if [[ $1 == "--debug" ]]; then
|
|
verbosity=-1
|
|
echo "[Constellation] Debug mode enabled"
|
|
else
|
|
echo "[Constellation] Unknown argument: $1"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "[Constellation] Debug mode disabled"
|
|
fi
|
|
|
|
# Prepare the encrypted volume by either initializing it with a random key or by aquiring the key from another bootstrapper.
|
|
# Store encryption key (random or recovered key) in /run/cryptsetup-keys.d/state.key
|
|
disk-mapper \
|
|
-csp "${CONSTEL_CSP}" \
|
|
-v "${verbosity}"
|