mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-13 03:01:04 +01:00
15 lines
371 B
Bash
15 lines
371 B
Bash
|
source "$(dirname "$(readlink -f "${0}")")/base.sh" || (echo "Loading base.sh failed." && exit 1)
|
||
|
echo "Mounting encrypted storage..."
|
||
|
|
||
|
set_device_mount_and_mapper_paths
|
||
|
|
||
|
info "Unlock partition..." &&
|
||
|
sudo cryptsetup luksOpen $device_path $mapper_name ||
|
||
|
error
|
||
|
|
||
|
info "Mount partition..." &&
|
||
|
sudo mount $mapper_path $mount_path ||
|
||
|
error
|
||
|
|
||
|
success "Mounting successfull :)"
|