mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
11 lines
451 B
Bash
11 lines
451 B
Bash
#!/bin/bash
|
|
# Unlocks the data
|
|
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
|
ENCRYPTED=$(readlink -f "$(dirname "$(readlink -f "${0}")")/../.encrypted");
|
|
DECRYPTED=$(readlink -f "$(dirname "$(readlink -f "${0}")")/../data");
|
|
echo "Unlocking directory $DECRYPTED..."
|
|
echo "Creating directory $DECRYPTED..."
|
|
mkdir $DECRYPTED
|
|
echo "Encrypting directory $DECRYPTED to $DECRYPTED..."
|
|
encfs $ENCRYPTED $DECRYPTED && echo "ATTENTION: DATA IS NOW DECRYPTED!"
|