mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2025-11-21 17:56:27 +00:00
Added draft for storage encryption procedures
This commit is contained in:
17
scripts/encryption/data/unlock.sh
Normal file
17
scripts/encryption/data/unlock.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Unlocks the data
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
#
|
||||
# shellcheck source=/dev/null # Deactivate SC1090
|
||||
# shellcheck disable=SC2015 # Deactivating bool hint
|
||||
source "$(dirname "$(readlink -f "${0}")")/../../base.sh" || (echo "Loading base.sh failed." && exit 1)
|
||||
info "Unlocking directory $DECRYPTED_PATH..."
|
||||
if [ ! -d "$DECRYPTED_PATH" ]
|
||||
then
|
||||
info "Creating directory $DECRYPTED_PATH..." &&
|
||||
mkdir "$DECRYPTED_PATH" || error
|
||||
fi
|
||||
info "Encrypting directory $DECRYPTED_PATH to $DECRYPTED_PATH..." &&
|
||||
encfs "$ENCRYPTED_PATH" "$DECRYPTED_PATH" || error
|
||||
echo "ATTENTION: DATA IS NOW DECRYPTED!"
|
||||
Reference in New Issue
Block a user