2020-05-20 12:13:39 +02:00
|
|
|
#!/bin/bash
|
2020-05-20 10:35:37 +02:00
|
|
|
source "$(dirname "$(readlink -f "${0}")")/base.sh" || (echo "Loading base.sh failed." && exit 1)
|
2020-05-20 12:13:39 +02:00
|
|
|
echo "Mounts encrypted storages"
|
2020-05-20 10:35:37 +02:00
|
|
|
|
2020-05-20 15:03:50 +02:00
|
|
|
set_device_mount_partition_and_mapper_paths
|
2020-05-20 10:35:37 +02:00
|
|
|
|
|
|
|
info "Unlock partition..." &&
|
2020-05-20 12:47:30 +02:00
|
|
|
sudo cryptsetup luksOpen $partition_path $mapper_name ||
|
2020-05-20 10:35:37 +02:00
|
|
|
error
|
|
|
|
|
|
|
|
info "Mount partition..." &&
|
|
|
|
sudo mount $mapper_path $mount_path ||
|
|
|
|
error
|
|
|
|
|
|
|
|
success "Mounting successfull :)"
|