blob: 9faa47fc152b7c74798ac7f48a93192377c2e115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/zsh
. $(dirname $0:A)/func.zsh
check_root
if [ "$#" -ne 2 ]; then
echo "missing args: mount_crypt </dev/device> <name>"
exit
fi
DEVICE=$1
NAME=$2
cryptsetup luksOpen $DEVICE $NAME
mount /dev/mapper/$NAME
|