blob: 2483aecbe85ac8155179ec82a67d1a0a86b9e66b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/zsh
. /home/pks/bin/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
|