mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
15 lines
515 B
Bash
15 lines
515 B
Bash
#!/bin/bash
|
|
#
|
|
# Locks the data
|
|
# @author Kevin Veen-Birkenbach [aka. Frantz]
|
|
#
|
|
# shellcheck disable=SC2015 # Deactivating bool hint
|
|
# shellcheck source=/dev/null # Deactivate SC1090
|
|
source "$(dirname "$(readlink -f "${0}")")/../base.sh" || (echo "Loading base.sh failed." && exit 1)
|
|
info "Locking directory $DECRYPTED_PATH..." &&
|
|
fusermount -u "$DECRYPTED_PATH" || error "Unmounting failed."
|
|
info "Data is now encrypted."
|
|
|
|
info "Removing directory $DECRYPTED_PATH..." &&
|
|
rmdir "$DECRYPTED_PATH" || error "Failed."
|