linux-image-manager/scripts/encryption/storage/single_drive/mount.sh

19 lines
615 B
Bash
Raw Normal View History

2020-05-20 12:13:39 +02:00
#!/bin/bash
2020-12-20 21:58:11 +01:00
# shellcheck disable=SC1090 # Can't follow non-constant source. Use a directive to specify location.
# shellcheck disable=SC2015 # Deactivating bool hint
# shellcheck disable=SC2154 # Referenced but not assigned
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 15:03:50 +02:00
set_device_mount_partition_and_mapper_paths
info "Unlock partition..." &&
2020-12-20 21:58:11 +01:00
sudo cryptsetup luksOpen "$partition_path" "$mapper_name" ||
error
info "Mount partition..." &&
2020-12-20 21:58:11 +01:00
sudo mount "$mapper_path" "$mount_path" ||
error
success "Mounting successfull :)"