mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2025-09-09 19:57:11 +02:00
Draft of renaming structure
This commit is contained in:
9
scripts/encryption/lock.sh
Normal file
9
scripts/encryption/lock.sh
Normal file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Locks the data
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
#
|
||||
# shellcheck source=/dev/null # Deactivate SC1090
|
||||
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||
echo "Locking directory $DECRYPTED_PATH..."
|
||||
fusermount -u "$DECRYPTED_PATH" && echo "Data is now encrypted." && echo "Removing directory $DECRYPTED_PATH..." && rmdir "$DECRYPTED_PATH"
|
15
scripts/encryption/unlock.sh
Normal file
15
scripts/encryption/unlock.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Unlocks the data
|
||||
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
||||
#
|
||||
# shellcheck source=/dev/null # Deactivate SC1090
|
||||
source "$(dirname "$(readlink -f "${0}")")/base.sh"
|
||||
echo "Unlocking directory $DECRYPTED_PATH..."
|
||||
if [ ! -d "$DECRYPTED_PATH" ]
|
||||
then
|
||||
echo "Creating directory $DECRYPTED_PATH..."
|
||||
mkdir "$DECRYPTED_PATH"
|
||||
fi
|
||||
echo "Encrypting directory $DECRYPTED_PATH to $DECRYPTED_PATH..."
|
||||
encfs "$ENCRYPTED_PATH" "$DECRYPTED_PATH" && echo "ATTENTION: DATA IS NOW DECRYPTED!"
|
Reference in New Issue
Block a user