Files
linux-image-manager/scripts/encryption/storage/mount.sh
Kevin Veen-Birkenbach [aka. Frantz] 76f1a35a46 Optimized analyziation
2020-05-20 12:13:39 +02:00

16 lines
379 B
Bash

#!/bin/bash
source "$(dirname "$(readlink -f "${0}")")/base.sh" || (echo "Loading base.sh failed." && exit 1)
echo "Mounts encrypted storages"
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 :)"