From 6e3ec5e7d01f167b38e3d43dd097029b0defb05c Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 25 Apr 2023 15:07:19 +0200 Subject: [PATCH] Adapted documentary --- README.md | 2 +- scripts/encryption/data/unlock.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ae2dfd6..afd55d8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Linux Image Manager -[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](./LICENSE.txt) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/6e66409513d7451b949afbf0373ba71f)](https://www.codacy.com/manual/kevinveenbirkenbach/core-system?utm_source=github.com&utm_medium=referral&utm_content=kevinveenbirkenbach/core-system&utm_campaign=Badge_Grade) [![Travis CI](https://travis-ci.org/kevinveenbirkenbach/core-system.svg?branch=master)](https://travis-ci.org/kevinveenbirkenbach/core-system) +[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](./LICENSE.txt) This repository contains some shell scripts to download and configure linux images and to transfer them to a storage. diff --git a/scripts/encryption/data/unlock.sh b/scripts/encryption/data/unlock.sh index 4d1b1aa..d0147ff 100644 --- a/scripts/encryption/data/unlock.sh +++ b/scripts/encryption/data/unlock.sh @@ -12,6 +12,6 @@ if [ ! -d "$DECRYPTED_PATH" ] info "Creating directory $DECRYPTED_PATH..." && mkdir "$DECRYPTED_PATH" || error fi -info "Encrypting directory $DECRYPTED_PATH to $DECRYPTED_PATH..." && +info "Decrypting directory $DECRYPTED_PATH to $DECRYPTED_PATH..." && encfs "$ENCRYPTED_PATH" "$DECRYPTED_PATH" || error echo "ATTENTION: DATA IS NOW DECRYPTED!"